home *** CD-ROM | disk | FTP | other *** search
- // Allow easy reference to classes in the System namespace
- using System;
-
- // This "class" exists only to house the application's entry-point function
- class MainApp {
- // Static method called "Main" is application's entry point function
- public static void Main() {
- // Write text to the console
- Console.WriteLine("Hello World using C#!");
- }
- }
-