我看到BeginForm
具有以下签名的方法的重载:
(扩展) MvcForm HtmlHelper.BeginForm(string actionName, string ControllerName, FormMethod方法)
我named-arguments
在调用时使用类似的东西,
@using (Html.BeginForm(actionName:"Index", controllerName:"Home", FormMethod.Get))
但是,我不断收到这样的错误:
CS1738: Named argument specifications must appear after all fixed arguments have been specified
有什么想法我哪里出错了吗?
谢谢。