The following rules outline the guidelines for naming classes: Use a noun or noun phrase to name a class. Use Pascal case . Use abbreviations sparingly. Do not use a type prefix, such as C for class, on a class name. For example, use the class name FileStream
Read More...