delegate{}和(输入参数)的区别=> {}

发布于 2024-09-25 02:14:09 字数 262 浏览 5 评论 0原文

我有一些这样的方法

public void DoSomething(Action<int> action) { ... }

在某些情况下我不使用传递到操作中的参数。我应该注意这样称呼它

DoSomething(delegate { ... });

DoSomething(_ => { ... });

I have a few methods like this

public void DoSomething(Action<int> action) { ... }

In some cases I do not use the parameters passed into action. Are there any differences I should be aware of between calling it like this

DoSomething(delegate { ... });

or

DoSomething(_ => { ... });

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

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

发布评论

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

评论(1

凶凌 2024-10-02 02:14:12

不,它们是等价的。就我个人而言,我更喜欢 delegate {} 因为很明显您不关心参数(甚至不命名它们),并且您不需要根据委托调整代码签名 - 但两者都很好。

No, they're equivalent. Personally I prefer delegate {} as it's obvious that you don't care about the parameters (to the extent of not even naming them), and you don't need to adapt the code based on the delegate signature - but both are fine.

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