erlang自定义二进制协议
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
386 B

  1. namespace MiscUtil.Conversion
  2. {
  3. /// <summary>
  4. /// Endianness of a converter
  5. /// </summary>
  6. public enum Endianness
  7. {
  8. /// <summary>
  9. /// Little endian - least significant byte first
  10. /// </summary>
  11. LittleEndian,
  12. /// <summary>
  13. /// Big endian - most significant byte first
  14. /// </summary>
  15. BigEndian
  16. }
  17. }