.NET 有效属性名称

发布于 2024-08-06 07:57:24 字数 66 浏览 2 评论 0原文

.NET 中有效属性名称的文档在哪里?显然,诸如空格、* 或 & 之类的东西在属性名称中无效,但这在哪里记录?

Where is the documentation for valid property names in .NET? Obviously things like space, * or & aren't valid in a property name, but where is this documented?

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

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

发布评论

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

评论(4

与风相奔跑 2024-08-13 07:57:24

您可以在平台上查找特定语言的信息,以下是一些。

C# 语言
VB 语言

更具体地说:C# 属性声明

You can look the information up for a particular language on the platform, here are a few.

C# Language
VB Language

More specifically: C# Property Declaration

所有深爱都是秘密 2024-08-13 07:57:24

http://msdn.microsoft.com/en-us /library/aa664670(VS.71).aspx

来自语言规范。属性名称是标识符,就像成员和函数一样。诚然,其他地方有一些可选的标准命名约定,但我们强烈鼓励这样做。

http://msdn.microsoft.com/en-us/library/aa664670(VS.71).aspx

From the language spec. Property names are identifiers just like members and functions. Granted, there are standard naming conventions elsewhere that are optional, but greatly encouraged.

傲影 2024-08-13 07:57:24

有效标识符的规则也适用于属性。

从这里开始查看:C# 语言规范 - 2.4.2 标识符

The rules for valid identifiers apply to the properties as well.

Start looking here: C# Language Specification - 2.4.2 Identifiers

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