MVC2 中的可选参数和命名参数、语言规范
我在混合 webforms 项目中使用 MVC2,我的模型类可以使用可选参数和命名参数进行良好编译,但我的视图在使用它们时不会编译。我得到:
错误 38 无法使用功能“命名参数”,因为它不是 3.0 C# 语言规范的一部分
有什么想法吗?谢谢
I'm using MVC2 in a mixed webforms project, my Model classes compile fine with optional and named parameters, but my view won't compile when using them. I get:
Error 38 Feature 'named argument' cannot be used because it is not part of the 3.0 C# language specification
Any ideas? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的应用程序需要配置为在 ASP.NET 4.x 而不是 2.x 中运行;你可能还想要(在你的 web.config 中):
如果你预编译你的视图,你可能会在没有这个的情况下逃脱。
Your app will need to be configured to run in ASP.NET 4.x rather than 2.x; you might also want (in your web.config):
You might get away without this if you pre-compile your views.