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

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.

share|improve this question
8  
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
18  
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
22  
@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. – Iain Holder 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
show 2 more comments

10 Answers

up vote 430 down vote accepted

It's the null coalescing operator, and quite like the ternary (immediate-if) operator. See also ?? Operator - MSDN.

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;
share|improve this answer
77  
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
2  
@CodeBlend how so? – lc. Sep 6 '11 at 11:33
7  
@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
2  
@Xitcod13 No it wouldn't. Semantically, you would have to do Answer1 ??= Answer2 to assign a value to Answer1, but ??= isn't a valid operator. – lc. Oct 15 '12 at 8:29
show 5 more comments

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.

share|improve this answer

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

share|improve this answer
1  
Oops, so the magic words were already in an answer. Missed that :) +1 – Jon Skeet Jan 15 '09 at 14:10
3  
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

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.

share|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

?? 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().

share|improve this answer

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";
share|improve this answer
x ||= y desugars to something like x = x || y, so ?? is actually more similar to plain || in Ruby. – Qerub Feb 2 at 0:03
Note that ?? only cares about null, whereas the || operator in Ruby, as in most languages, is more about null, false, or anything that can be considered a boolean with a value of false (e.g. in some languages, ""). This is not a good or bad thing, merely a difference. – Tim S. May 8 at 20:15

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;
share|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

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();
}
share|improve this answer
2  
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. – Benjamin Autin Jan 15 '09 at 16:00

coalescing operator

it's equivalent to

FormsAuth = formsAUth == null ? new FormsAuthenticationWrapper() : formsAuth
share|improve this answer

Nothing dangerous about this. In fact, it is beautiful. You can add default value if that is desirable, for example:

CODE

int x = x1 ?? x2 ?? x3 ?? x4 ?? 0;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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