Unboxing only works if the type is identical! You can't unbox an object
that does not contain the target value. What you need is something along the lines of
decimal tmpvalue;
decimal? result = decimal.TryParse((string)value, out tmpvalue) ?
tmpvalue : (decimal?)null;
This looks whether the value is parsable as a decimal
. If yes, then assign it to result
; else assign null
. The following code does approximately the same and might be easier to understand for people not familiar with the conditional operator ?:
:
decimal tmpvalue;
decimal? result = null;
if (decimal.TryParse((string)value, out tmpvalue))
result = tmpvalue;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…