Cegonsoft Console programming in VB.Net | Get Prepared for VB.Net in one month

rojicraven

Registered Users (C)
Console Applications are command-line oriented applications that allow us to read characters from the console, write characters to the console and are executed in the DOS version. Console Applications are written in code and are supported by the System.Console namespace.

Example on a Console Application
Create a folder in C: drive with any name (say, examples) and make sure the console applications which you open are saved there. That's for your convenience. The default location where all the .NET applications are saved is C:\Documents and Settings\Administrator\My Documents\Visual Studio Projects. The new project dialogue looks like the image below.



Source Code:


Module Module1

Sub Main()
System.Console.Write("Welcome to Console Applications")
End Sub

End Module
 
Last edited by a moderator:
Top