C# Action lambda 代码块的限制

发布于 2024-07-08 01:33:42 字数 1586 浏览 1 评论 0原文

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

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

发布评论

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

评论(2

二货你真萌 2024-07-15 01:33:42

您缺少一个分号,它会编译:

 Action action = () => { if (m_Count < 10) m_Count++; value = m_Count; };

当您说 type name = statements; 时,即使您在代码块中使用大括号,您也需要一个分号。

You are missing a semi-colon, it compiles:

 Action action = () => { if (m_Count < 10) m_Count++; value = m_Count; };

When you say type name = statement; you need a semicolon even if you use braces for a code block.

戴着白色围巾的女孩 2024-07-15 01:33:42

cfeduke 发布了编译代码的解决方案。

请注意,您无法将语句块 lambda 表达式转换为表达式树,即使您可以将它们转换为委托。 对于可以转换为表达式树的内容,还有其他限制

回到委托,那里有一些限制 - 例如,您不能在 lambda 表达式中编写迭代器块。 (我以前就想这样做 - 当你试图解决这个问题时,它会变得很奇怪。尽管你做不到。)在大多数情况下,你几乎可以用一种方法做任何你能做的事情。

cfeduke has posted the solution to getting your code to compile.

Note that you can't convert statement-block lambda expressions into expression trees, even though you can convert them into delegates. There are other limitations on what you can convert into expression trees.

Going back to delegates, there are some limitations there - you can't write an iterator block within a lambda expression, for example. (I've wanted to do that before now - it gets weird when you try to get your head round it. You can't do it though.) For the most part, you can do almost anything you can do in a method.

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