在VB6中你可以这样做:
Dim a As Variant
a = Array(1, 2, 3)
你能在VB.NET中用特定类型做类似的事情吗?:
Dim a() As Integer
a = Array(1, 2, 3)
答案 0 :(得分:13)
Dim a() As Integer = New Integer() {1, 2, 3}
答案 1 :(得分:0)
如果您是.NET新手,您将需要了解List集合以及它在respect to sorting, filtering, and iteration中为您提供的灵活性。