C# Helps.NET Programming languages
|
Good programming practice Tip 01 By convention, always begin a class name's identifier with a capital letter and start each subsequent word in the identifier with a capital letter. Good programming practice Tip 02 By convention, A file that contain a single public class should have a name that is identical to the class name,(plus the .cs extension) in terms of both spelling and capitalization. Naming your file in this way makes it easier for other programmers (and you) to determine where the classes of an application are located. |