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. |
|||||||||||||||||
|
|
It's the null coalescing operator, and quite like the ternary (immediate-if) operator. See also ?? Operator - MSDN.
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
|
|||||||||||||||||||||
|
|
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. |
|||
|
|
|
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 |
||||
|
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.
|
|||
|
|
|
||||
|
|
|
If you're familiar with Ruby, its
And in C#:
|
|||||
|
|
Thanks everybody, here is the most succinct explanation I found on the MSDN site:
|
|||||||||
|
|
It's short hand for the ternary operator.
Or for those who don't do ternary:
|
|||||||
|
|
coalescing operator it's equivalent to
|
||||
|
|
|
Nothing dangerous about this. In fact, it is beautiful. You can add default value if that is desirable, for example: CODE
|
||||
|
|