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

ToUInt16() public static method

public static ToUInt16 ( byte value, int startIndex ) : UInt16
value byte
startIndex int
return UInt16
        public static UInt16 ToUInt16(byte[] value, int startIndex = 0)
        {
            return BitConverter.ToUInt16(Order(value), startIndex);
        }