为什么VS告诉我在mvc中更改此操作的签名

时间:2017-12-01 16:53:35

标签: c# asp.net asp.net-mvc asp.net-mvc-4 visual-studio-2017

对于C#asp.net mvc中的这个动作,VS向我展示了一个改变签名的泡泡黄色。我使用VS 2017。

为什么要告诉我这个错误

[AllowAnonymous]
public ActionResult Index(string returnUrl)
{
    AdminLoginViewModel loginModel = new AdminLoginViewModel();
    loginModel.Email = string.Empty;
    loginModel.Password = null;
    ViewBag.ReturnUrl = returnUrl;
    return View();
}

the light bubble

after click on light bubble show me this window. whats does means?

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

这不是错误,这是从Visual Studio 2015开始提供的经典灯泡,该功能可根据上下文向您显示一些建议。

https://msdn.microsoft.com/en-us/library/dn872466.aspx