FSO.Files.Endian.SwapUInt16 C# (CSharp) Method

SwapUInt16() public static method

public static SwapUInt16 ( ushort v ) : ushort
v ushort
return ushort
        public static ushort SwapUInt16(ushort v)
        {
            return (ushort)(((v & 0xff) << 8) | ((v >> 8) & 0xff));
        }