Microsoft VB.NET 命名约定
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
正如 Mehrdad 所说,VB.NET 遵循通用 .NET 命名约定。 更具体地说:
As Mehrdad said, VB.NET follows the General .NET naming conventions. More specificly:
我使用“网络命名约定和编程标准 - 最佳实践”指南:
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
VB.NET 共享 .NET Framework 的命名约定。 对于类型和公共内容使用 PascalCase,否则使用 CamelCase。
VB.NET shares the naming convention of the .NET Framework. PascalCase for types and public stuff, camelCase otherwise.
启用 Visual Studio“代码分析”来根据多种 Microsoft 认可的命名约定检查您的代码。
Enable Visual Studio "Code Analysis" to check your code against several Microsoft-sanctioned naming conventions.
查看此问题。 这本质上是关于 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.