条件 Lambda 表达式?

发布于 2024-09-27 15:59:18 字数 214 浏览 2 评论 0原文

我有一个 lambda 表达式,当前如下所示:

item => Reports.Add(item)

我想对其进行修改,使其成为有条件的,并基本上检查 Reports.Contains(item) 返回 false,然后执行 Reports.Add(item) 操作。是否可以在一行上使用 lambda 来完成此操作?

克里斯

I have a lambda expression that currently looks like this:

item => Reports.Add(item)

I want to modify it such that it is conditional, and basically checks that Reports.Contains(item) returns false, then performs the Reports.Add(item) action. Is this possible to do using lambda all on one line?

Chris

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

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

发布评论

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

评论(3

迷路的信 2024-10-04 15:59:18
Action<ItemType> action = item => { if(!Reports.Contains(item)) Reports.Add(item);};

应该可以,但这实际上取决于您如何定义“一行”。

Action<ItemType> action = item => { if(!Reports.Contains(item)) Reports.Add(item);};

That should do, but it depends on how you define 'one line', really.

那小子欠揍 2024-10-04 15:59:18

Ani 建议的替代方案:将 Reports 设为 HashSet。

alternative to Ani's suggestion: make Reports a HashSet.

当爱已成负担 2024-10-04 15:59:18

您可以使用分号分隔 lambda 中的多行。

you can separate multiple lines in your lambda with semicolons.

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