List.Foreach(Delegate) 是在 Mono 中实现的吗?

发布于 2024-10-06 11:22:00 字数 712 浏览 2 评论 0原文

我在 Ubuntu 10.10 中使用 MonoDevelop 2.4,但似乎无法进行简单的 C# 调用。

myList.DGraph.ForEach(delegate(string s){Console.WriteLine(s)});

我收到此错误:

DirectedGraph.cs(219,78): error CS1525: Unexpected symbol `}'
DirectedGraph.cs(250,1): error CS1525: Unexpected symbol `}', expecting `)', or `,'
DirectedGraph.cs(251,1): error CS8025: Parsing error

它似乎不喜欢这个,尽管据我所知, 这个 有效

I'm using MonoDevelop 2.4 in Ubuntu 10.10 and I can't seem to do a simple C# call.

myList.DGraph.ForEach(delegate(string s){Console.WriteLine(s)});

I receive this as an error:

DirectedGraph.cs(219,78): error CS1525: Unexpected symbol `}'
DirectedGraph.cs(250,1): error CS1525: Unexpected symbol `}', expecting `)', or `,'
DirectedGraph.cs(251,1): error CS8025: Parsing error

It doesn't seem to like this, although as far as I can tell, this is valid.

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

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

发布评论

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

评论(1

·深蓝 2024-10-13 11:22:00

您需要一个分号 (;),

myList.DGraph.ForEach(delegate(string s){Console.WriteLine(s);});
                                                             ^

否则这不是合法的方法体。

You need a semicolon (;)

myList.DGraph.ForEach(delegate(string s){Console.WriteLine(s);});
                                                             ^

otherwise that is not a legal method body.

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