home *** CD-ROM | disk | FTP | other *** search
- '************************************************
- ' File: Console.vb (21-Aug-2002)
- ' Author: G. Born www.borncity.de
- '
- ' Empty Class with Main Sub, writes a console output
- '
- ' Compile with:
- ' vbc <name>.vbs /t:exe
- '************************************************
- Option Strict
-
- Imports System
-
- Class Test
- Shared Sub Main() ' Main procedure
- ' insert your code here
- Dim test As String = "Please press Enter..."
- Console.WriteLine(test)
- test = Console.ReadLine
- End Sub
- End Class