BitSharp.Common.Bits.ToInt64 C# (CSharp) 메소드

ToInt64() 공개 정적인 메소드

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