home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / dotNETSDK / SETUP.EXE / netfxsd1.cab / HelloCS_cs_1________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Text File  |  2001-08-21  |  381 b   |  12 lines

  1. // Allow easy reference to classes in the System namespace
  2. using System;
  3.  
  4. // This "class" exists only to house the application's entry-point function
  5. class MainApp {
  6.     // Static method called "Main" is application's entry point function
  7.     public static void Main() {
  8.         // Write text to the console
  9.         Console.WriteLine("Hello World using C#!");     
  10.     }
  11. }
  12.