how to declare Array of dictionary in VB.net | The ASP.NET Forums
Dim AttributeValuePairs() As Dictionary(Of String, String) = New Dictionary(Of String, String)() {} You need the array specifier (empty parentheses) in the initializer part, but since VB confuses these with the parentheses on a constructor call, you need ...