BitSharp.Common.Bits.EncodeUInt16 C# (CSharp) Method

EncodeUInt16() public static method

public static EncodeUInt16 ( ushort value, byte buffer, int offset ) : void
value ushort
buffer byte
offset int
return void
        public static void EncodeUInt16(ushort value, byte[] buffer, int offset = 0)
        {
            EncodeInt16(unchecked((short)value), buffer, offset);
        }