我正在看ASP.NET MVC 1.0生成的代码,并且想知道; 双重问号意味着什么?
// 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();
}
Run Code Online (Sandbox Code Playgroud)
Nat*_*n W 10
它意味着相同
If (formsAuth != null)
FormsAuth = formsAuth;
else
FormsAuth = FormsAuthenticationService();
Run Code Online (Sandbox Code Playgroud)