Represents a byte order type in multibyte-words.
            
    Namespace: 
   SGP.XUtilityAssembly: SGP.XUtility (in SGP.XUtility.dll)
Version: 1.2.3019.18718
Syntax
| C# | 
|---|
public enum XByteOrder  | 
Members
| Member name | Description | |
|---|---|---|
| LittleEndian | 
            A byte order from the less significant to the most significant (e.g. Inter processors),
            e.g. the value 0x01020304 will be saved in the memory as 0x04, 0x03, 0x02, 0x01.
              | |
| BigEndian | 
            A byte order from the most significant to the less significant (e.g. Motorola processors),
            e.g. the value 0x01020304 will be saved in the memory as 0x01, 0x02, 0x03, 0x04.
              |