所以我有一个像这样的数组:
var arra= new String [50,50];
// I add in arrays and for every added row, update count by 1. The columns are till incount which is less than 50.
for(i=0;i<=count;i++)
{
for(j=0;j<incount;j++)
{
print (bigsub[i,j]);
}
}
有没有更快的方法可以做到这一点?我也可以对内部数组执行此操作吗?