GetDecimal() public method

public GetDecimal ( int offset ) : decimal
offset int
return decimal
Esempio n. 1
0
 private decimal GetDecimal()
 {
     DiagnosticUtility.DebugAssert(_type == ValueHandleType.Decimal, "");
     return(_bufferReader.GetDecimal(_offset));
 }
 decimal GetDecimal()
 {
     Fx.Assert(type == ValueHandleType.Decimal, "");
     return(bufferReader.GetDecimal(offset));
 }