If I have a nullable "decimal? d" and I want to assign d to non nullable e, what is the proper way?
|
feedback
|
| |||||||
feedback
|
| |||||||||||||||||
feedback
|
|
You need to determine whether you even can, i.e. whether the nullable d has a value or not.
Another interesting case comes up quite commonly where you want to assign to a nullable using a ternary, in which case you have to cast to make both branches have the same type.
Note the case of null to (int?) so that both branches have the same type. | |||
feedback
|
| |||||||||||||||||||
feedback
|
|
I usually go with something like this:
The reason here is that I'm a fan of ternary operations and I usually assign the value I would get if I had perfermed a failed | |||
|
feedback
|