Search code examples
c#.netcastingnullable

Cast object to decimal? (nullable decimal)


If have this in the setter of a property:

decimal? temp = value as decimal?;

value = "90"

But after the cast, temp is null...

What is the proper way to do this cast?


Solution

  • 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;