VBscript:
arytwoDim(1,intLastBucketBlockIndex) = "08:30 AM" 'TIME
arytwoDim(2,intLastBucketBlockIndex) = 5 'Resource QTY
我想创建一个与vb数组等效的List集合,以便可以用硬编码的行cols来镜像逻辑。
I tried loading list like this:
List<List<String>> arytwoDim = new List<List<String>>(); //Creates new nested List
arytwoDim .Add(new List<String>()); //Adds new sub List
arytwoDim [1][intLastBucketBlockIndex] = "08:30 AM"; //TIME
arytwoDim [2][intLastBucketBlockIndex] = 5; //Resource QTY
我收到此错误:'索引超出范围。必须为非负数并且小于集合的大小。
参数名称:index'
我确认intLastBucketBlockIndex包含的值为0。
请告知,谢谢您的帮助!