GetDecimal() public méthode

public GetDecimal ( int offset ) : decimal
offset int
Résultat decimal
Exemple #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));
 }