If have this in the setter of a property:
decimal? temp = value as decimal?;
value = \"90\"
But after the cast, temp is nul
and if you use decimal? temp = (decimal?)value;
decimal? temp = (decimal?)value;