郑广学VSTO火箭速成班 VBAYYDS.COM

ArrayHelperDimArray 方法

重载列表

DimArray(Object, Object, Object) 一维数组定义,对标VBA中的Dim arr(1 to 10) ==>Dim arr(1,10)
DimArray(Object, Object, Object, Object) 定义数组 和VBA里一样可定义非零下标二维数组 为object(,)
DimArrayT(Object, Object, Object, Object) 定义二维数组 和VBA里一样可定义非零下标二维数组
对标Dim arr(1 to 10,1 to 2)==> DimArray(1,10,1,2)

参见