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






Illustrates the use of comments

Illustrates the use of comments
/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

/*
  Example2_2.cs illustrates the use of comments
*/

public class Example2_2
{

  public static void Main()
  {

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

  }

}

           
       








Related examples in the same category

1.The Hello World! Application with XML CommentsThe Hello World! Application with XML Comments