jellyfin/SocketHttpListener.Portable/ByteOrder.cs

18 lines
363 B
C#
Raw Normal View History

2016-11-11 20:55:12 +01:00
namespace SocketHttpListener
{
/// <summary>
/// Contains the values that indicate whether the byte order is a Little-endian or Big-endian.
/// </summary>
public enum ByteOrder : byte
{
/// <summary>
/// Indicates a Little-endian.
/// </summary>
Little,
/// <summary>
/// Indicates a Big-endian.
/// </summary>
Big
}
}