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.
|
Ran across this line of code:
What do the two question marks mean, is it some kind of ternary operator? It's hard to look up in Google.
| |||||||||||||||||
feedback
|
|
It's the null coalescing operator, and quite like the ternary (immediate-if) operator.
expands to:
which further expands to:
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
| |||||||||||||||||
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 | |||||
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:
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. | |||
|
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(). | |||
|
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:
in UndefinedObject (aka nil's class):
There are both evaluating (?) and non-evaluating versions (??) of this.
| |||
feedback
|
|
Thanks everybody, here is the most succinct explanation I found on the MSDN site:
| |||||||||
feedback
|
|
coalescing operator it's equivalent to FormsAuth = formsAUth == null ? new FormsAuthenticationWrapper() : formsAuth | |||
|
feedback
|
|
It's short hand for the ternary operator.
Or for those who don't do ternary:
| |||||||
feedback
|
|
If you're familiar with Ruby, its
And in C#:
| |||
|
feedback
|