GetUInt64() public method

Get UInt64 value from byte array from the current position and then increments the position.
public GetUInt64 ( ) : System.UInt64
return System.UInt64
Esempio n. 1
0
        ulong IConvertible.ToUInt64(IFormatProvider provider)
        {
            GXByteBuffer bb = GetByteBuffer(Value, 8);

            return(bb.GetUInt64());
        }