创建一个C#列表集合等效的VBscript二维数组

时间:2018-07-08 13:44:44

标签: multidimensional-array collections vbscript

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。


请告知,谢谢您的帮助!

0 个答案:

没有答案