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

更新于: 2019 年 11 月 4 日

76 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告