我有一个 string()() 数组,它必须在 for 循环中重新设置。所以我该怎么做。像这样的代码。
dim arr as string()()=nothing
dim z as integer=nothing
for i= 1 to 5
for j=0 to 536
if j mod i =0 then
redim preserve arr(z)(i)=i.tostring
z+=1
end if
next
next