你有一个直的二维数组.长度为您提供数组中元素的总数,但您使用它来计算单个维度的索引.你想要的是:
for (int i = 0; i < Items.GetLength(0); i++) { Console.WriteLine(Items[i,1]); }