home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / IntroDev / HelloWorld / cs / HelloCS.cs < prev    next >
Encoding:
Text File  |  2000-06-23  |  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.