Option Strict On
Imports System.Collections.Generic
Public Module Module1
Public Sub Main()
Dim foo As List(Of String) = New List(Of String) 'Method 1
'Or
Dim bar As New List(Of String) 'Method 2
End Sub
End Module