C# 中的二维数组是什么?

WBOY
WBOY 转载
2023-08-26 15:17:17 821浏览

C# 中的二维数组是什么?

二维数组是一维数组的列表。

二维数组可以通过为每行指定括号内的值来初始化。

int [,] a = new int [2,2] {
   {0, 1} ,
   {4, 5}
};

以下示例展示了如何在 C# 中使用二维数组 -

using System;

namespace ArrayApplication {
   class MyArray {
      static void Main(string[] args) {
         /* an array with 3 rows and 2 columns*/
         int[,] a = new int[3, 2] {{0,0}, {1,2}, {2,4} };
         int i, j;

         /* output each array element's value */
         for (i = 0; i < 3; i++) {

            for (j = 0; j < 2; j++) {
               Console.WriteLine("a[{0},{1}] = {2}", i, j, a[i,j]);
            }
         }
         Console.ReadKey();
      }
   }
}

以上就是C# 中的二维数组是什么?的详细内容,更多请关注php中文网其它相关文章!

声明:本文转载于:tutorialspoint,如有侵犯,请联系admin@php.cn删除