GetUInt64() public method

public GetUInt64 ( int offset ) : ulong
offset int
return ulong
示例#1
0
 private ulong GetUInt64()
 {
     DiagnosticUtility.DebugAssert(_type == ValueHandleType.UInt64, "");
     return(_bufferReader.GetUInt64(_offset));
 }
 ulong GetUInt64()
 {
     Fx.Assert(type == ValueHandleType.UInt64, "");
     return(bufferReader.GetUInt64(offset));
 }