1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-09 23:45:42 +00:00

(#15) Add xmldoc to Endianness enum fields

This commit is contained in:
Oliver Booth 2021-06-27 13:19:55 +01:00
parent e2e7b3a947
commit c91067a9ba

View File

@ -7,9 +7,15 @@ namespace X10D
/// </summary>
public enum Endianness
{
/// <summary>
/// The value should be read as though it uses little endian encoding.
/// </summary>
[Description("The value should be read as though it uses little endian encoding.")]
LittleEndian,
/// <summary>
/// The value should be read as though it uses big endian encoding.
/// </summary>
[Description("The value should be read as though it uses big endian encoding.")]
BigEndian
}