Naming Convention - Coding (Part 6)
The following points applies for all the sections that follows: Never use all caps. Only use Pascal or camel casing. Never use Hungarian Notation. Again, avoid using abbreviations unless the name is too long (exceptions: common abbreviations, medical abbreviations, banking abbreviations, etc…). Avoid abbreviations longer than 5 characters. Use uppercase for 2 letter abbreviation and Pascal case for longer ones. // Example CountryEU CountryGcc Never add redundant or meaningless prefixes and suffixes . // Bad Practice public enum LanguageEnum public class CEmployee public struct ChangeStruct Never include the class name in the property name . // Bad Practice Customer .customerName // ...