若要查找数组的维数,请使用Array Rank属性。这是定义它的方式-
arr.Rank
在这里,arr是我们的数组-
int[,] arr = new int[3,4];
如果要获取其具有的行和列,请使用GetLength属性-
arr.GetLength(0); arr.GetLength(1);
以下是完整的代码-
using System; class Program { static void Main() { int[,] arr = new int[3,4]; Console.WriteLine(arr.GetLength(0)); Console.WriteLine(arr.GetLength(1)); //长度 Console.WriteLine(arr.Length); Console.WriteLine("Dimensions of Array : " + arr.Rank); } }
输出结果
3 4 12 Dimensions of Array : 2