Visual Basic .NET API Reference
Select an item from the left navigation or use the search box to find API members.
System.String
Namespace: System
Assembly: mscorlib.dll
Represents text as a series of Unicode characters.
Dim msg As String = "Hello, World!"
View members »
System.Console
Namespace: System
Assembly: System.Console.dll
Provides basic support for input and output through the console.
Console.WriteLine("Enter your name:")
Dim name As String = Console.ReadLine()
Console.WriteLine($"Hello, {name}!")
View members »
System.Collections.Generic.List(Of T)
Namespace: System.Collections.Generic
Assembly: System.Collections.dll
Represents a strongly typed list of objects that can be accessed by index.
Dim numbers As New List(Of Integer)()
numbers.Add(1)
numbers.Add(2)
Console.WriteLine(String.Join(", ", numbers))
View members »
System.Threading.Tasks.Task
Namespace: System.Threading.Tasks
Assembly: System.Threading.Tasks.dll
Represents an asynchronous operation.
Async Function GetDataAsync() As Task(Of String)
Await Task.Delay(1000)
Return "Data received"
End Function
View members »