Pascal Case
Class Name
Member Name
Method Name
Camel Case
Method Local
Method Parameter
Comments
There are three ways of denoting a comment
Single line comment //
Multi-line comment /* --- */
Document comment ///
Example Program
class HelloWorld
{
 static void Main()
 {
     System.Console.WriteLine("Hello, world!");
 }
}