From c91067a9bad7170ae5801e9e193c5b94297aae3c Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sun, 27 Jun 2021 13:19:55 +0100 Subject: [PATCH] (#15) Add xmldoc to Endianness enum fields --- X10D/src/Endianness.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/X10D/src/Endianness.cs b/X10D/src/Endianness.cs index 92397f0..eb9f54d 100644 --- a/X10D/src/Endianness.cs +++ b/X10D/src/Endianness.cs @@ -7,9 +7,15 @@ namespace X10D /// public enum Endianness { + /// + /// 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, + /// + /// 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 }