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

  1. '************************************************
  2. ' File:  Console.vb  (21-Aug-2002)
  3. ' Author: G. Born www.borncity.de
  4. '
  5. ' Empty Class with Main Sub, writes a console output
  6. '
  7. ' Compile with:
  8. ' vbc <name>.vbs /t:exe
  9. '************************************************
  10. Option Strict
  11.  
  12. Imports System
  13.  
  14. Class Test
  15.  Shared Sub Main()           ' Main procedure
  16. ' insert your code here
  17.   Dim test As String = "Please press Enter..."
  18.   Console.WriteLine(test)
  19.   test = Console.ReadLine
  20.  End Sub
  21. End Class