Steps to create Console application in VB.Net.

  1. On the File menu in Microsoft Visual Studio, point to New and then click Project.
  2. In the New Project dialog box, select a language in the Installed Templates box, and then select the Console Application template.
  3. Type a name for the application in the Name box, and in the Location box, type the path to where you want the application to be created and then click ok.
  4. Type your code in main() , as shown below...
                 Sub Main()

                         Console.WriteLine("This is sample application.")
                 End Sub

    5. Now debug your program and see the result.


0 Response to "Steps to create Console application in VB.Net."

Post a Comment