我有一个 3X3 数组byte[,] grid = new byte[3,3];,在我的程序中访问它可以正常工作,但是当我尝试通过循环查找横向行的总数时,我收到错误“索引超出数组范围。”。我知道这意味着什么,但我不明白为什么我会得到它。
total = 0;
for (byte xy = 2; xy >= 0; xy-=1) {
total += grid[xy, xy]; //this is were i get the error
}
慕妹3242003
相关分类