9
1
Option Strict On
2
Imports System.Collections.Generic
3
Public Module Module1
4
Public Sub Main()
5
Dim foo As Queue(Of String) = New Queue(Of String)
6
'Or
7
Dim bar As New Queue(Of String)
8
End Sub
9
End Module
Cached Result