显示赋值可以这样
Dim num(,) As Integer = {{1,2,3} ,{4,5,6},{7,8,9}}
使用的时候:
For i As Integer = 0 To 2 For j As Integer = 0 To 2 Output.Show(num(i,j)) NextNext