Index: src/Common/SharpMap/Converters/WellKnownBinary/WKBByteOrder.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/SharpMap/Converters/WellKnownBinary/WKBByteOrder.cs (.../WKBByteOrder.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/SharpMap/Converters/WellKnownBinary/WKBByteOrder.cs (.../WKBByteOrder.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -17,26 +17,27 @@ namespace SharpMap.Converters.WellKnownBinary { - /// - /// Specifies the specific binary encoding (NDR or XDR) used for a geometry byte stream - /// - public enum WkbByteOrder : byte - { - /// - /// XDR (Big Endian) Encoding of Numeric Types - /// - /// - /// The XDR representation of an Unsigned Integer is Big Endian (most significant byte first). - /// The XDR representation of a Double is Big Endian (sign bit is first byte). - /// - Xdr = 0, - /// - /// NDR (Little Endian) Encoding of Numeric Types - /// - /// - /// The NDR representation of an Unsigned Integer is Little Endian (least significant byte first). - /// The NDR representation of a Double is Little Endian (sign bit is last byte). - /// - Ndr = 1 - } -} + /// + /// Specifies the specific binary encoding (NDR or XDR) used for a geometry byte stream + /// + public enum WkbByteOrder : byte + { + /// + /// XDR (Big Endian) Encoding of Numeric Types + /// + /// + /// The XDR representation of an Unsigned Integer is Big Endian (most significant byte first). + /// The XDR representation of a Double is Big Endian (sign bit is first byte). + /// + Xdr = 0, + + /// + /// NDR (Little Endian) Encoding of Numeric Types + /// + /// + /// The NDR representation of an Unsigned Integer is Little Endian (least significant byte first). + /// The NDR representation of a Double is Little Endian (sign bit is last byte). + /// + Ndr = 1 + } +} \ No newline at end of file