Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicates:
?? Null Coalescing Operator --> What does coalescing mean?
What do two question marks together mean in C#?

I couldn't find this question being asked here so I figured I would ask it. What does a double question mark do in C#?

Example:

x = y ?? z;
share|improve this question
1  
It gets you, and everyone who answers before the topic is closed, a lot of rep :) [It always amazes me how fast null coalescing questions and answer get rep here...] – Reed Copsey Oct 22 '09 at 15:55
Ya, I thought i was gonna make big coin, but I had a brainfart and couldn't remember the dang jargon in time. Baw. – Will Oct 22 '09 at 16:00

marked as duplicate by Will, John Gietzen, Reed Copsey, Frank V, Matt Brunell Oct 22 '09 at 15:56

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

7 Answers

up vote 7 down vote accepted

This is a null coalescing operator. The method above states x is assigned y's value, unless y is null, in which case it is assigned z's value.

share|improve this answer

Use y if not null, otherwise use z

share|improve this answer

If y is null x will be set to z.

share|improve this answer

From Wikipedia:

It's the null-coalesce operator and shorthand for this:

x = (y != null ? y : z);
share|improve this answer

If a the value y is null then the value z is assigned.

For example:

x = Person.Name ?? "No Name";

If name is null x will have the value "No Name"

share|improve this answer

As others have stated, it is the null coalescing operator.

MSDN information on this:

http://msdn.microsoft.com/en-us/library/ms173224.aspx

share|improve this answer

.Net framework 2.0 onwards allow null values to Nullable value types.

here in this case, it says x equals y if it has some value (ie not null) or else equals z

share|improve this answer

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