Reputation: 2421
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.
Upvotes: 15
Views: 19043
Reputation: 1732
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
Upvotes: 4
Reputation: 121294
As Mehrdad said, VB.NET follows the General .NET naming conventions. More specificly:
Upvotes: 11
Reputation: 10875
Enable Visual Studio "Code Analysis" to check your code against several Microsoft-sanctioned naming conventions.
Upvotes: 1
Reputation: 29725
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.
Upvotes: 0
Reputation: 421978
VB.NET shares the naming convention of the .NET Framework. PascalCase for types and public stuff, camelCase otherwise.
Upvotes: 2