BitSharp.Common.Bits.ToUInt16 C# (CSharp) Méthode

ToUInt16() public static méthode

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