Home »
VB.Net »
VB.Net Programs
Program to print Hello World in VB.NET
By Nidhi Last Updated : November 16, 2024
Printing "Hello World"
We, will create a program in VB.Net to print the "Hello World" message on the console screen using WriteLine() method of Console class.
VB.Net code to print "Hello World"
The source code to print "Hello World" in VB.NET is given below. The given program is compiled and executed successfully.
'Program to print "Hello World" in VB.NET.
Module Module1
Sub Main()
Console.WriteLine("Hello World")
Console.ReadLine()
End Sub
End Module
Output:
Hello World
Explanation:
In the above program, we created a Module that contains the Main() method, here we printed the "Hello World" message using WriteLine() method of Console class on the console screen.
VB.Net Basic Programs »