A business object is returning a short? datatype.
How would I get this value into a variable?
short? myShort = SomeBusinessObject.UserBlah;
Is that correct? Will it break if it is null?
|
|
|||
|
|
|
Yes, that is correct. |
||
|
|
|
|
Are you actually trying to protect against SomeBusinessObject being null? If so, nullable types won't help you there. You still need to check whether your SomeBusinessObject is null. I'm assuming that this is the case because if UserBlah returns a short then it'll never be null (as short is not a nullable type). |
||
|
|
|
|
You can't reference You can use Use You can use |
||
|
|
|
|
myShort will only be null if You can also do this:
|
||
|
|
|
|
That's correct. You only have to worry if you're assigning myShort to a non-nullable short, in which case you have to check HasValue, like so:
|
||||||||
|
|
|
To get it into a variable use myShort.Value after checking myShort.HasValue |
||
|
|
|
|
Don't forget about the null coalescing operator.
if SomeBusinessObject.UserBlah is null, it just passes the value to the right of ?? so you can default it to something. |
||
|
|