14
1
Option Strict On
2
Imports System.Collections.Generic
3
Public Module Module1
4
Public Sub Main()
5
'Declare a new List(Of String)
6
Dim garage As New List(Of String)
7
8
'Add my vehicles to the List
9
garage.AddRange({"2004 Chevrolet Tahoe", "2008 Lincoln MKZ"})
10
11
'Woops, forgot my Mustang
12
garage.Insert(0, "1978 Ford Mustang II")
13
End Sub
14
End Module
Cached Result