在VB中给数组赋值的方法有两种:使用数组初始化器或者使用循环遍历数组并为每个元素赋值。
Dim myArray() As Integer = {1, 2, 3, 4, 5}
Dim myArray(4) As Integer For i As Integer = 0 To myArray.Length - 1 myArray(i) = i + 1 Next
这两种方法都可以有效地为数组赋初始值,选择哪种方法取决于具体情况。