blob: 04e4a8ee7b4d0d14f11b989106cd5a95445bb0c6 [file] [log] [blame]
// reverse byte order (16-bit)
public static UInt16 ReverseBytes(UInt16 value)
{
return (UInt16)((value & 0xFFU) << 8 | (value & 0xFF00U) >> 8);
}