13
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.Add("1978 Ford Mustang II")
10
garage.Add("2004 Chevrolet Tahoe")
11
garage.Add("2008 Lincoln MKZ")
12
End Sub
13
End Module
Cached Result