GetInt64() 공개 메소드

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

            return(bb.GetInt64());
        }