When this code finishes, what is the result of myObject?
object myObject = "something";
object yourObject = null;
myObject = null ?? yourObject;
|
When this code finishes, what is the result of
| |||||||||||||||||
feedback
|
|
myObject will be null This gets translated to -
| ||||
|
feedback
|
|
The coalesce operator translates to this:
Therefore what you have:
Which is actually pretty pointless since null will always be null. | |||||||
feedback
|
|
Just for kicks, here is a small table: A ?? B -> R --------------------- a ?? any -> a; where a is not-null null ?? b -> b; for any b null ?? null -> null; implied from previous And since ...from ?? Operator (C# Reference):
...from the C# 3.0 Language reference:
| ||||
|
feedback
|