可能的复制品: VisualBasic2008? 中的集合初始化语法
如何将下面的 C # 代码转换为 VB.NET?
var theVar = new List<string>{"one", "two", "three"};
集合初始化器是 仅在 VB.NET 2010中可用,发布于2010-04-12:
Dim theVar = New List(Of String) From { "one", "two", "three" }
为了兼容 VB.NET2005/2008,请使用以下语法:
Dim theVar As New List(Of String)(New String() {"one", "two", "three"})
虽然 NET 2010语法更漂亮。