- arr[,] 用于声明等长的二维数组 Eg:
//声明数组有3行 每行长度相等为2
var s = new int[3, 2]
{
{ 1, 2 },
{ 3, 4 },
{ 1, 4 }
};
获取行长度
Console.WriteLine(s.GetLength(0));
获取列长度
Console.WriteLine(s.GetLength(1));
- arr[][]则可以声明等长二维数组,也可以声明不等长二维数组 Eg:
//每行均是一个新数组 长度任意
int[][] p = new int[3][]
{
new[] { 1, 2 ,4},
new int[] { 3 },
new int[] { 1, 4 }
};
获取行长度
Console.WriteLine(p.Length);
获取列长度
Console.WriteLine(p[0].Length);//获取第0行 列的长度