mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-13 00:15:42 +00:00
(#15) Add xmldoc to Endianness enum fields
This commit is contained in:
parent
e2e7b3a947
commit
c91067a9ba
@ -7,9 +7,15 @@ namespace X10D
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public enum Endianness
|
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.")]
|
[Description("The value should be read as though it uses little endian encoding.")]
|
||||||
LittleEndian,
|
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.")]
|
[Description("The value should be read as though it uses big endian encoding.")]
|
||||||
BigEndian
|
BigEndian
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user