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.
18 lines
407 B
18 lines
407 B
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
|
|
}
|
|
}
|