Programming languages

VB.NET

A multi-paradigm, object-oriented programming language, implemented on the .NET Framework. VB.NET is an evolution of the Visual Basic language to include .NET's powerful features.

Share this starting point code.study/vb-net
Created by
Microsoft
First appeared
2001
Official resource
Visit the main website

Your first program

Hello, World!

VB.NET
Module Module1
    Sub Main()
        Console.WriteLine("Hello, World!")
    End Sub
End Module