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:
parent
e2e7b3a947
commit
c91067a9ba
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user