我在C#中遇到多维数组问题

时间:2019-07-23 17:17:34

标签: c#

我正在玩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”。

0 个答案:

没有答案