GetInt64() public method

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

            return(bb.GetInt64());
        }