Arrays
Dim names = {"Foo", "Bar"} ' Inferred as String()
Dim numbers = {1, 5, 42} ' Inferred as Integer()
Containers (List(Of T), Dictionary(Of TKey, TValue), etc.)
Dim names As New List(Of String) From {
"Foo",
"Bar"
'...
...