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

ToInt64() public static méthode

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