公共列表<(Of <(<'T>)>)>..::..枚举器?

发布于 2024-09-27 00:14:19 字数 453 浏览 2 评论 0 原文

我正在查看有关 List.GetEnumerator 的 MSDN 文档

他们说 C# 方法签名是:

public List<(Of <(<'T>)>)>..::..Enumerator GetEnumerator()

我期待这个更简单的签名:

public List<T>.Enumerator GetEnumerator()

他们的签名意味着什么,以及所有标点符号和“Of”关键字?

编辑:好吧,我想如果没有人见过这种语法,那么 MSDN 文档只是有点错误,仅此而已。

I'm looking at the MSDN docs about List.GetEnumerator.

They say the C# method signature is:

public List<(Of <(<'T>)>)>..::..Enumerator GetEnumerator()

I was expecting this much simpler signature:

public List<T>.Enumerator GetEnumerator()

What does their signature mean, with all the punctuation and the "Of" keyword?

Edit: Well, I guess if no one has seen that syntax, then the MSDN docs are just a bit buggy, and that's all.

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

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

发布评论

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

评论(2

夏夜暖风 2024-10-04 00:14:19

MSDN 使用一些代码生成来为所有不同的语言提供该签名,这看起来像是该代码中的一个错误,它忘记考虑实际语言并只输出所有语法 - 其中的所有内容都可以与某种语言中这种返回类型的预期语法(尽管,不可否认,我并不完全确定撇号来自哪里)。

在其他页面上也可以看到同样的问题,例如非常相似的 HashSet.GetEnumerator< /a>,但不适用于其他,例如 Queryable.AsQueryable,因此它们似乎不会立即生成所有内容,并且在生成这两个页面之间引入/删除了该错误。 (因为我们不知道其中每一个有多新,所以我们无法猜测它是否已经被修复。)

我不知道他们是否时不时地运行自动重新生成,但如果他们这样做,它可能很快就会自行修复。如果没有,您可以在社区内容部分留下评论。

MSDN uses some code generation to supply that signature for all of the different languages, and this looks like a bug in that code which forgets to take the actual language into account and just outputs all of the syntax - everythign in there can be matched to the expected syntax for such a return type in some language (although, admittedly, I'm not entirely sure where the apostrophe is from).

The same problem can be seen on other pages, such as the very similar HashSet.GetEnumerator, but not on others, like Queryable.AsQueryable, so it seems likely that they don't generate everything at once, and the bug was introduced/removed between the generation of those two pages. (Since we don't know how new each of those are, we can't guess if it's already been fixed.)

I don't know if they have automatic re-generation running every now and then, but if they do, it will probably fix itself soon. If not, you could leave a comment about it in the Community Content section.

粉红×色少女 2024-10-04 00:14:19

看起来 MSDN 上有一个错误。看看Queue是如何定义的: http:// /msdn.microsoft.com/en-us/library/7977ey2c(v=VS.90).aspx

Looks like a mistake in MSDN. Take a look at how Queue is defined: http://msdn.microsoft.com/en-us/library/7977ey2c(v=VS.90).aspx

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