我收到编译错误“错误的索引数量 []:预期为 1”。但为什么?我想我没有做任何奇怪的事情。
这是代码(在一个函数内):
// **valoresMonedas is a Int32[] array passed as parameter**
Int32[] valores = valoresMonedas;
Int32[][] matrixnN;
Int32 valMon = valoresMonedas.Count();
matrixnN = new Int32[valMon][];
for (Int32 i=0;i< cantidadTotal;i++){
// **cantidadTotal is a Int32 passed as parameter**
matrixnN[i] = new Int32[cantidadTotal];
}
for (Int32 i=0;i< valMon; i++){
matrixnN[i][0] = 0;
}
// some code... (just if / for / assignations ..)
matrixnN[0][1] = 1 + matrixnN[1, 1 + valores[1]]; // <-- THE ERROR IS HERE
谢谢你的任何建议