C#中的Type.GetArrayRank()方法获取数组中的维数。
public virtual int GetArrayRank ();
现在让我们看一个实现Type.GetArrayRank()方法的示例-
using System; public class Demo { public static void Main(string[] args) { Type type = typeof(int[,, ]); int arrRank = type.GetArrayRank(); Console.WriteLine("Array Rank = {0}", arrRank); } }
输出结果
这将产生以下输出-
Array Rank = 3
现在让我们来看另一个实现Type.GetArrayRank()方法的示例-
using System; public class Demo { public static void Main(string[] args) { Type type = typeof(string[,,,,,,, ]); Type type2 = typeof(string[,,,,,,, ]); int arrRank = type.GetArrayRank(); Console.WriteLine("Array Rank = {0}", arrRank); Console.WriteLine("Are both types equal? {0}", type.Equals(type2)); } }
输出结果
这将产生以下输出-
Array Rank = 8 Are both types equal? True