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