home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2003 January / PCpro_2003_01.ISO / born / IDE / DotNET-IDE / Templates / Console.cs next >
Encoding:
Text File  |  2002-08-21  |  428 b   |  22 lines

  1. //************************************************
  2. // File:  Console.cs  (21-Aug-2002)
  3. // Author: G. Born www.borncity.de
  4. //
  5. // Empty MainClass, writes a console output
  6. //
  7. // Compile with:
  8. // clc <name>.vbs /t:exe
  9. //************************************************
  10.  
  11. using System;
  12.  
  13. class MainClass
  14. {
  15.     public static void Main(string[] args)
  16.     {
  17.         Console.WriteLine("Hello World!");
  18.         Console.ReadLine();
  19.  
  20.     }
  21. }
  22.