Possible Duplicate:
Is there an “opposite” to the null coalescing operator? (…in any language?)

Is there a more concise way of writing the third line here?

int? i = GetSomeNullableInt();
int? j = GetAnother();
int k = i == null ? i : j;

I know of the null coalescing operator but the behaviour I'm looking for is the opposite of this:

int k == i ?? j;
link|improve this question

65% accept rate
Wait a second... why'd you ask a question and then vote to close it as a dupe? – BoltClock Sep 12 '11 at 18:55
Because he found the other question. why not? – Miserable Variable Sep 12 '11 at 19:04
feedback

closed as exact duplicate by Nick Strupat, BoltClock, Austin Salonen, StackUnderflow, James Johnson Sep 12 '11 at 19:01

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 1 down vote accepted

Sneaky - you edited it while I was replying. :)

I do not believe there is a more concise way of writing that. However, I would use the "HasValue" property, rather than == null. Easier to see your intent that way.

int? k = !i.HasValue ? i : j; 

(BTW - k has to be nullable, too.)

link|improve this answer
feedback

In C#, the code you have is the most concise way to write what you want.

link|improve this answer
feedback

What is the point of that operator? The use cases are pretty limited. If you're looking for a single-line solution without having to use a temporary variable, it's not needed in the first place.

int k = GetSomeNullableInt() == null ? null : GetAnother();
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.