在VB6中怎样表示二维数组

2025-02-24 09:12:10
推荐回答(1个)
回答1:

' 直接定义3行4列的2维数组
Dim array1(3, 4) as Integer

' 指定数组下标定义2维数组
Dim array2(1 to 3, 1 to 4) as Integer