ASP.NET MVC DefaultValue 属性与 C# 可选参数

发布于 2024-11-09 10:53:48 字数 377 浏览 0 评论 0原文

之间有什么区别

public ActionResult DoStuff([DefaultValue(MyEnum.Alpha)] MyEnum enumToUse, bool printPage = false)
{
    //...
}

使用 DefaultValue 属性的 ASP.NET MVC2 方法签名与使用 C# 4.0 可选参数的签名

public ActionResult DoStuff(MyEnum enumToUse = MyEnum.Alpha, bool printPage = false)
{
    //...
}

?这两种说法在功能上是否有所不同,或者只是偏好问题?

What is the difference between this ASP.NET MVC2 method signature, which uses the DefaultValue attribute:

public ActionResult DoStuff([DefaultValue(MyEnum.Alpha)] MyEnum enumToUse, bool printPage = false)
{
    //...
}

And this signature, which instead uses a C# 4.0 optional argument?

public ActionResult DoStuff(MyEnum enumToUse = MyEnum.Alpha, bool printPage = false)
{
    //...
}

Are the two statements different in any functional way, or is it just a matter of preference?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒解孤独 2024-11-16 10:53:48

都是一样的,看个人喜好了。我会使用第二个,因为它的击键次数更少。另外,我认为 DefaultValueAttribute 将涉及一些反射巫术,因此如果您对性能很敏感,您可能更喜欢 C# 4.0 可选参数。

Same stuff, it's a matter of personal preference. I would use the second as it's less keystrokes. Also I think that the DefaultValueAttribute will involve some reflection voodoo so if you are anal about performance you might prefer the C# 4.0 optional arguments.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文