System.VarintBitConverter.ToUInt64 C# (CSharp) Method

ToUInt64() public static method

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