over 9 years ago
Naming Convention:
Basicaly three types of naming conventions are used in C#, Camel, Pascal and Hungarian.
We should use PascalCasing for class names and method names:
Example:
We should use camelCasing for method arguments and local variables:
Example:
We should not use Hungarian notation as it is no longer used in C#.
Note:-> Always use proper and meaningful names for declaring variables, method arguments, Classes, etc. for good readability of the code.
Example:
Coding Standards:
1. Do not write constant with capital letters.
Example:
2. Avoid using abbreviations.
Example:
3. Avoid using Underscores in declaring identifiers.
Example:
We can use Underscore in declaring private static variables.
4. Prefix I with the name of the interfaces.
Example:
5. Use proper indentation. (Ctrl+K+D) is a shortcut key to provide indentation in Visual Studio.
Example:
6. Declare static variables at top of the class.
Example:
- public class Account
- {
- public static string BankName;
- public static decimal Reserves;
- public string Number {get; set;}
- // Constructor
- public Account()
- {
- // ...
- }
- }
public class Account { public static string BankName; public static decimal Reserves; public string Number {get; set;} // Constructor public Account() { // ... } }
7.Use singular names for enum.
Example:
8. Donot suffix names of the enum with "Enum".
Example:
9. Use predefined type names instead of system type names.
Example:
10.Always declare namespaces with a clearly defined structure.
Example:
0 Comment(s)