home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / TemaCD / C#ed / Setup.exe / Comments.cs < prev    next >
Text File  |  2000-08-23  |  273b  |  18 lines

  1.  
  2. // C# supports C++-style comments
  3.  
  4. /* C# also supports 
  5. C-style comments */
  6.  
  7. using System;
  8.  
  9. class Loops
  10. {
  11.     public static void Main() // Entry point
  12.     {
  13.         Console.WriteLine("Your program starts here");
  14.         
  15.         Console.WriteLine("Your program ends here");
  16.     }
  17. }
  18.