Endianness.cs 517 B

12345678910111213141516171819
  1. namespace NetMQ
  2. {
  3. /// <summary>
  4. /// This enum-type specifies either big-endian (Big) or little-endian (Little),
  5. /// which indicate whether the most-significant bits are placed first or last in memory.
  6. /// </summary>
  7. public enum Endianness
  8. {
  9. /// <summary>
  10. /// Most-significant bits are placed first in memory.
  11. /// </summary>
  12. Big,
  13. /// <summary>
  14. /// Most-significant bits are placed last in memory.
  15. /// </summary>
  16. Little
  17. }
  18. }