vote up 4 vote down star
2

I'm looking at the generated code by ASP.NET MVC 1.0, and was wondering; what do the double question marks mean?

// This constructor is not used by the MVC framework but is instead provided for ease
// of unit testing this type. See the comments at the end of this file for more
// information.
public AccountController(IFormsAuthentication formsAuth, IMembershipService service)
{
    FormsAuth = formsAuth ?? new FormsAuthenticationService();
    MembershipService = service ?? new AccountMembershipService();
}

Related:

?? Null Coalescing Operator —> What does coalescing mean?

flag

74% accept rate
Great answers, thanks all. – Brian Liang Apr 20 at 21:16
1  
This is a duplicate, but also notoriously hard to google for – Dana Apr 20 at 21:17

6 Answers

vote up 30 vote down check

This is the null-coalescing operator. It will return the value on its left if that value is not null, else the value on the right (even if it is null). They are often chained together ending in a default value.

Check out this article for more

link|flag
vote up 8 vote down

It means the same as

If (formsAuth != null)
  FormsAuth = formsAuth;
else
  FormsAuth = FormsAuthenticationService();
link|flag
vote up 2 vote down

Its the null coalescing operator. If the value on the left is null then it will return the value on the right.

link|flag
vote up 0 vote down

It means : return the first value (e.g. "formsAuth") if it's NOT NULL, or else the second value (new FormsAuthenticationService()):

Marc

link|flag
vote up 2 vote down

it's the null-coalescing operator

From MSDN

The ?? operator is called the null-coalescing operator and is used to define a default value for a nullable value types as well as reference types. It returns the left-hand operand if it is not null; otherwise it returns the right operand.

A nullable type can contain a value, or it can be undefined. The ?? operator defines the default value to be returned when a nullable type is assigned to a non-nullable type. If you try to assign a nullable value type to a non-nullable value type without using the ?? operator, you will generate a compile-time error. If you use a cast, and the nullable value type is currently undefined, an InvalidOperationException exception will be thrown.

For more information, see Nullable Types (C# Programming Guide).

The result of a ?? operator is not considered to be a constant even if both its arguments are constants.

link|flag
vote up 1 vote down

If formsAuth it is null it returns the value on the right ( new FormsAuthenticationService() ).

link|flag

Your Answer

Get an OpenID
or

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