up vote 93 down vote favorite
29
share [g+] share [fb]

Ran across this line of code:

FormsAuth = formsAuth ?? new FormsAuthenticationWrapper();

What do the two question marks mean, is it some kind of ternary operator? It's hard to look up in Google.

link|improve this question

80% accept rate
3  
It's definitely not a ternary operator - it only has two operands! It's a bit like the conditional operator (which is ternary) but the null coalescing operator is a binary operator. – Jon Skeet Jan 15 '09 at 14:11
It's awesome... I discovered this last year some time :) – Andrew Rollings Jan 15 '09 at 14:19
7  
I explained it in an interview where the prospective employer had previously expressed doubts about my C# abilities, as I'd been using Java professionally for a while before. They hadn't heard of it before, and didn't question my familiarity with C# after that :) – Jon Skeet Jan 15 '09 at 16:32
3  
@Jon Skeet There hasn't been such an epic fail to recognise skill since the guy who turned down the Beatles. :-) From now on just send them a copy of your book with a url link to your SO profile written on the inside cover. – IainMH Jan 16 '09 at 9:58
IainMH: For what it's worth, I hadn't quite started writing the book yet. (Or maybe I was just working on chapter 1 - something like that.) Admittedly a search for me would have quickly found my blog + articles etc. – Jon Skeet Jan 18 '09 at 16:45
feedback

9 Answers

up vote 151 down vote accepted

It's the null coalescing operator, and quite like the ternary (immediate-if) operator.

FormsAuth = formsAuth ?? new FormsAuthenticationWrapper();

expands to:

FormsAuth = formsAuth != null ? formsAuth : new FormsAuthenticationWrapper();

which further expands to:

if(formsAuth != null)
    FormsAuth = formsAuth;
else
    FormsAuth = new FormsAuthenticationWrapper();

In English, it means "If whatever is to the left is not null, use that, otherwise use what's to the right."

Note that you can use any number of these in sequence. The following statement will assign the first non-null Answer# to Answer:

string Answer = Answer1 ?? Answer2 ?? Answer3 ?? Answer4;
link|improve this answer
19  
didn´t know that one could chain these – Seiti Jan 15 '09 at 14:48
1  
Potentially dangerous to chain these maybe – CodeBlend Aug 4 '11 at 8:26
@CodeBlend how so? – lc. Sep 6 '11 at 11:33
1  
@CodeBlend, it's not dangerous. If you were to expand you'd just have a series of nested if/else statements. The syntax is just strange because you're not used to seeing it. – jm2 Oct 26 '11 at 19:33
@jm2 As long as you review what you are doing for example if you meant to have seperate not nested ifs this would not be appropriate. (Reading this really showed me a decent(ish) example of how it can be used)[rlacovara.blogspot.com/2009/07/… – CodeBlend Oct 27 '11 at 8:09
feedback

It's the null coalescing operator.

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

Yes, nearly impossible to search for unless you know what it's called! :-)

EDIT: And this is a cool feature from another question. You can chain them.

http://stackoverflow.com/questions/9033/hidden-features-of-c#15765

link|improve this answer
Oops, so the magic words were already in an answer. Missed that :) +1 – Jon Skeet Jan 15 '09 at 14:10
At least now, it's easy to search it, even if you don't know the name, I just googled "double question mark c#" – stivlo Dec 21 '11 at 8:18
feedback

Just because no-one else has said the magic words yet: it's the null coalescing operator. It's defined in section 7.12 of the C# 3.0 language specification.

It's very handy, particularly because of its associativity. An expression of the form:

a ?? b ?? c ?? d

will give the result of expression 'a' if it's non-null, otherwise try 'b', otherwise try 'c', otherwise try 'd'. It short-circuits at every point.

Also, if the type of 'd' is non-nullable, the type of the whole expression is non-nullable too.

link|improve this answer
feedback

?? is there to provide a value for a nullable type when the value is null. So, if formsAuth is null, it will return new FormsAuthenticationWrapper().

link|improve this answer
feedback

For your amusement only (knowing you are all C# guys ;-).

I think it originated in Smalltalk, where it has been around for many years. It is defined there as:

in Object:

? anArgument
    ^ self

in UndefinedObject (aka nil's class):

? anArgument
    ^ anArgument

There are both evaluating (?) and non-evaluating versions (??) of this.
It is often found in getter-methods for lazy-initialized private (instance) variables, which are left nil until really needed.

link|improve this answer
sounds like wrapping ViewState with a property on a UserControl. Initialize only on the first get, if it´s not set before. =) – Seiti Jan 15 '09 at 14:52
feedback

Thanks everybody, here is the most succinct explanation I found on the MSDN site:

// y = x, unless x is null, in which case y = -1.
int y = x ?? -1;
link|improve this answer
1  
This hints at an important aspect of the ?? operator -- it was introduced to assist in working with nullable types. In your example, "x" is of type "int?" (Nullable<int>). – Drew Noakes Jun 5 '09 at 12:56
1  
I think the code snippet should read: int? y = x ?? -1; – vitule Sep 28 '10 at 18:28
feedback

coalescing operator

it's equivalent to

FormsAuth = formsAUth == null ? new FormsAuthenticationWrapper() : formsAuth

link|improve this answer
feedback

It's short hand for the ternary operator.

FormsAuth = (formsAuth != null) ? formsAuth : new FormsAuthenticationWrapper();

Or for those who don't do ternary:

if (formsAuth != null)
{
  FormsAuth = formsAuth;
}
else
{
  FormsAuth = new FormsAuthenticationWrapper();
}
link|improve this answer
1  
I've only corrected the spelling of "ternary" but really the operator you mean is the conditional operator. It happens to be the only ternary operator in C#, but at some point they might add another one, at which point "ternary" will be ambiguous but "conditional" won't. – Jon Skeet Jan 15 '09 at 14:10
True enough. I think I spell it "terenary" because ternary physically sounds awkward. – toast Jan 15 '09 at 16:00
feedback

If you're familiar with Ruby, its ||= seems akin to C#'s ?? to me. Here's some Ruby:

irb(main):001:0> str1 = nil
=> nil
irb(main):002:0> str1 ||= "new value"
=> "new value"
irb(main):003:0> str2 = "old value"
=> "old value"
irb(main):004:0> str2 ||= "another new value"
=> "old value"
irb(main):005:0> str1
=> "new value"
irb(main):006:0> str2
=> "old value"

And in C#:

string str1 = null;
str1 = str1 ?? "new value";
string str2 = "old value";
str2 = str2 ?? "another new value";
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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