Module Module1
Sub Main() 'Our main procedure'In Visual Basic we use ' for comments! The comments will then become green..'Console.WriteLine means that we want to write a line to the console window.'By using the '&' operator we can add more text to our text string.'In this case we add 'vbCrLf' which means new line..'So this line of code will basically just print a text to the screen. 'All we have to do is to add this line of code
Console.WriteLine("Hello Neo..." & vbCrLf)
'You can also try combining text like this..'Console.WriteLine("Hello " & "Neo..")
Console.ReadLine() 'Wait for key to be pressedEndSubEnd Module
Visual Basic .Net Source Code
I hope you found this VB .Net tutorial useful!
Don't forget to mention Apron Tutorials in your References!