Type.GetArrayRank() 方法(C# 中)
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
广告