System.VarintBitConverter.ToUInt64 C# (CSharp) 메소드

ToUInt64() 공개 정적인 메소드

Returns 64-bit unsigned value from varint encoded array of bytes.
public static ToUInt64 ( byte bytes ) : ulong
bytes byte Varint encoded array of bytes.
리턴 ulong
        public static ulong ToUInt64(byte[] bytes)
        {
            return ToTarget(bytes, 64);
        }