.NET 中类型名称的最大长度是多少

发布于 2024-09-02 09:26:11 字数 341 浏览 2 评论 0原文

可能的重复:
C#/CLI 标识符的最大长度是多少?

生成动态程序集和类型时,类型名称的长度限制是什么?

Possible Duplicate:
What is the maximum length of a C#/CLI identifier?

When generating dynamic assemblies and types, what is length restriction on the type name?

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

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

发布评论

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

评论(3

风吹过旳痕迹 2024-09-09 09:26:11

我在 C# 中对此进行了测试,即使 CLI 中没有限制,编译器中的类名称也有限制。

如果您声明一个包含 511 个字符的类名,它就可以工作。如果使用 512 个字符,则会出现编译器错误“标识符太长”。

I tested this in C#, and there is a limitation on the class names in the compiler, even if there is no limitation in the CLI.

If you declare a class name that is 511 characters, it works. If you use 512 characters you get the compiler error "Identifier too long".

却一份温柔 2024-09-09 09:26:11

来自 Ecma-335,第 103 页:

元数据保留由编译器或代码创建的名称字符串
发电机,不变。本质上,它将每个字符串视为一个不透明的斑点。
特别是,它保留了大小写。 CLI 对长度没有限制
名称存储在元数据中,随后由 CLI 进行处理。

From Ecma-335, page 103:

Metadata preserves name strings, as created by a compiler or code
generator, unchanged. Essentially, it treats each string as an opaque blob.
In particular, it preserves case. The CLI imposes no limit on the length of
names stored in metadata and subsequently processed by the CLI.

帅气尐潴 2024-09-09 09:26:11

似乎不是一个(该线程是关于方法名称长度的,但它确实也适用于你的问题)。

There doesn't appear to be one (that thread is about method name length, but it really applies to your question as well).

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