Microsoft VB.NET 命名约定

发布于 2024-07-15 23:35:01 字数 341 浏览 5 评论 0原文

VB.NET 有标准命名约定吗?

根据您的编程经验,想分享您对 VB.NET 的命名约定吗?

除了 模式和模式之外,是否有任何关于这种良好实践的指南? 实践 Guidance Explorer 和Guidance Share

谢谢。 周末愉快。

Is there any standard naming convention for VB.NET ?

Based your programming experiences, would like to share your naming convention for VB.NET ?

Are there any guides for this kind of good practice besides patterns & practices Guidance Explorer and Guidance Share ?

Thanks. Happy Weekend.

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

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

发布评论

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

评论(5

差↓一点笑了 2024-07-22 23:35:01

正如 Mehrdad 所说,VB.NET 遵循通用 .NET 命名约定。 更具体地说:

  • 类型、事件、只读静态字段、方法、命名空间、属性:PascalCase
  • 参数:camelCase
  • 两个字符的缩写词:DB,Id 和 Ok 除外
  • 三个或更多字符的缩写词:Html 或 html,具体取决于上下文,但绝不是 HTML
  • 复合词:Hashtable,不是 HashTable,除了一些常见术语(如 FileName)
  • 请勿在单词之间使用连字符 (-) 或下划线 (_) 等分隔符
  • 请勿使用匈牙利表示法

As Mehrdad said, VB.NET follows the General .NET naming conventions. More specificly:

  • Types, events, read-only static fields, methods, namespaces, properties: PascalCase
  • Parameters: camelCase
  • Acronyms of two characters: DB, with the exception of Id and Ok
  • Acronyms of three or more characters: Html or html, depending on context, but never HTML
  • Compound words: Hashtable, not HashTable, except for some common terms like FileName
  • Do not use separators like hyphens (-) or underscores (_) between words
  • Do not use Hungarian notation
尬尬 2024-07-22 23:35:01

我使用“网络命名约定和编程标准 - 最佳实践”指南:
http://10rem.net/articles/net-naming-conventions-and-programming-standards---best-practices

I use this guide on "net Naming Conventions and Programming Standards - Best Practices":
http://10rem.net/articles/net-naming-conventions-and-programming-standards---best-practices

变身佩奇 2024-07-22 23:35:01

VB.NET 共享 .NET Framework 的命名约定。 对于类型和公共内容使用 PascalCase,否则使用 CamelCase。

VB.NET shares the naming convention of the .NET Framework. PascalCase for types and public stuff, camelCase otherwise.

≈。彩虹 2024-07-22 23:35:01

启用 Visual Studio“代码分析”来根据多种 Microsoft 认可的命名约定检查您的代码。

Enable Visual Studio "Code Analysis" to check your code against several Microsoft-sanctioned naming conventions.

给不了的爱 2024-07-22 23:35:01

查看此问题。 这本质上是关于 C# 的相同问题,但是提供的大多数链接和答案都适用于这两种语言。

Take a peek at this question. It is essentially the same question regarding C#, however most of of the links and answers provided apply to both languages.

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