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

ToInt64() public static method

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