Naming Conventions in Dotnet – C# and
VB.Net
Use the following three conventions for capitalizing identifiers.
Pascal Case
The first letter in the identifier and the first letter of each
subsequent concatenated word are capitalized. You can use Pascal case for
identifiers of three or more characters. For example:
BackColor
Use this for Class, Interface, Enum, function name and Static
Field
Camel Case
The first letter of an identifier is lowercase and the first
letter of each subsequent concatenated word is capitalized. For example:
backColor
Use this for Parameter name,
Uppercase
All letters in the identifier are capitalized. Use this convention
only for identifiers that consist of two or fewer letters. For example:
System.IO
System.Web.IO
No comments:
Post a Comment
Comments Welcome