📜  vba foreach 2d 数组 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:54.312000             🧑  作者: Mango

代码示例1
Dim outer As Long
Dim inner As Long
For outer = LBound(arrData, 1) To UBound(arrData, 1)
    For inner = LBound(arrData, 2) To UBound(arrData, 2)
        Debug.Print arrData(outer, inner)
    Next
Next