当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Type.GetArrayRank()用法及代码示例


Type.GetArrayRank()方法用于获取数组中的维数。

用法: public virtual int GetArrayRank ();

返回值:此方法返回一个整数,其中包含当前类型的维数。


异常:如果当前类型不是数组,则此方法将引发ArgumentException。

以下示例程序旨在说明Type.GetArrayRank()方法的使用:

示例1:

// C# program to demonstrate the 
// Type.GetArrayRank() Method 
using System; 
using System.Globalization; 
using System.Reflection; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        try 
        { 
            // Declaring and intializing Type object 
            Type type = typeof(int[,,,,, ]); 
  
            // Getting the dimensions 
            // using GetArrayRank() 
            int rank = type.GetArrayRank(); 
  
            // Display the rank 
            Console.WriteLine("ArrayRank is:  {0}", rank); 
        } 
  
        catch (ArgumentException e) 
        { 
            Console.WriteLine("The current type is not an Array"); 
            Console.Write("Exception Thrown: "); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
    } 
}
输出:
ArrayRank is:  6

示例2:

// C# program to demonstrate the 
// Type.GetArrayRank() Method 
using System; 
using System.Globalization; 
using System.Reflection; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
  
        try { 
  
            // Declaring and intializing Type object 
            Type type = typeof(int); 
  
            // Getting ArrayRank by 
            // using GetArrayRank() 
            int rank = type.GetArrayRank(); 
  
            // Display the rank 
            Console.WriteLine("ArrayRank is :  {0}", rank); 
        } 
  
        catch (ArgumentException e)  
        { 
            Console.WriteLine("The current type is not an Array"); 
            Console.Write("Exception Thrown: "); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
    } 
}
输出:
The current type is not an Array
Exception Thrown: System.ArgumentException

参考:



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 C# | Type.GetArrayRank() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。