【发布时间】:2014-11-10 19:40:50
【问题描述】:
我正在尝试将下面的二维数组显示为行和列。
Module Module1
Sub Main()
'declaring and initializing a 2d array
Dim a1(,) As Integer = {{2, 3}, {5, 3}}
For Each ele As Integer In a1
Console.WriteLine(ele)
Next
End Sub
End Module
我需要像这样的输出:
2 5
3 3
我需要你们的帮助。请
【问题讨论】: