我正在玩C#,我写了这个:
static void Main(string[] args)
{
int[,] a = new int[3, 3] { { 1, 2, 3}, { 1, 3, 3 }, { 2, 4, 3 } };
for (int column = 0; column <= a.GetLength(1); column++)
{
for (int row = 0; row <= a.GetLength(0); row++)
{
Console.WriteLine`enter code here`("{0}\t", a[row, column]);
}
}
Console.ReadLine();
}
但是当我运行它时,他给了我一个错误,叫做“ System.IndexOutOfRangeException”。