2차원 배열은 1차원 배열의 목록입니다.
2차원 배열은 각 행에 대괄호로 묶인 값을 지정하여 초기화할 수 있습니다.
int [,] a = new int [2,2] { {0, 1} , {4, 5} };
다음은 C#에서 2차원 배열로 작업하는 방법을 보여주는 예입니다 -
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(); } } }