Option Strict On
Imports System.Collections.Generic
Public Module Module1
Public Sub Main()
Dim foo As Dictionary(Of String, Integer) = New Dictionary(String, Integer)
'Or
Dim bar As New Dictionary(Of String, Integer)
End Sub
End Module