二維數組是一維數組的列表。
二維數組可以透過為每行指定括號內的值來初始化。
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中文網其他相關文章!