home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / CSharp / ConsoleAppTemplate.cs < prev    next >
Encoding:
Text File  |  2004-10-22  |  359 b   |  22 lines

  1. using System;
  2.  
  3. namespace [!Namespace]
  4. {
  5.     /// <summary>
  6.     /// Summary description for [!ClassName].
  7.     /// </summary>
  8.     class [!ClassName]
  9.     {
  10.         /// <summary>
  11.         /// The main entry point for the application.
  12.         /// </summary>
  13.         [STAThread]
  14.         static void Main(string[] args)
  15.         {
  16.             //
  17.             // TODO: Add code to start application here
  18.             //
  19.         }
  20.     }
  21. }
  22.