Illustrates the use of comments : Comments « Language Basics « C# / CSharp Tutorial






class MainClass
{

  public static void Main()
  {

    // display "Hello World!" on the screen
    System.Console.WriteLine("Hello World!");

  }

}
Hello World!








1.3.Comments
1.3.1.Use comment in C#
1.3.2.Illustrates the use of comments