vote up 15 vote down star
9

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.

flag

1  
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
2  
"double question marks C#" is not too difficult to Google. – Matthew Ruston Jan 15 '09 at 14:18
It's awesome... I discovered this last year some time :) – Andrew Rollings Jan 15 '09 at 14:19
2  
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
@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
show 1 more comment

9 Answers

vote up 0 vote down

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|flag
vote up 4 vote down

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|flag
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
vote up 3 vote down check

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|flag
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 at 12:56
vote up 13 vote down

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|flag
vote up 0 vote down

coalescing operator

it's equivalent to

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

link|flag
vote up 0 vote down

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|flag
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
vote up 20 vote down

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|flag
Oops, so the magic words were already in an answer. Missed that :) +1 – Jon Skeet Jan 15 '09 at 14:10
vote up 4 vote down

?? 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|flag
vote up 40 vote down

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|flag
didn´t know that one could chain these – Seiti Jan 15 '09 at 14:48

Your Answer

Get an OpenID
or

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