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


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


Type.GetElementType()方法用于在派生类中重写时,返回当前数组,指针或引用类型所包含或引用的对象的Type。

用法: public abstract Type GetElementType ();

返回值:此方法返回当前数组,指针或引用类型所包含或引用的对象的Type;如果当前Type不是数组或指针,或者未被引用传递,或者表示泛型类型,则返回null。泛型类型或泛型方法的定义中的类型参数。


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

示例1:

// C# program to demonstrate the 
// Type.GetElementType() Method 
using System; 
using System.Globalization; 
using System.Reflection; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // Declaring and initializing type 
        Type type = typeof(int[,, ]); 
  
        // using GetElementType() Method 
        Type t = type.GetElementType(); 
  
        // Display the ElementType 
        Console.WriteLine("ElementType is: {0}", t); 
    } 
}
输出:
ElementType is: System.Int32

示例2:

// C# program to demonstrate the 
// Type.GetElementType() Method 
using System; 
using System.Globalization; 
using System.Reflection; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        // Creating the object of class 
        GFG obj = new GFG(); 
  
        Type typ1 = obj.GetType(); 
        Type typ2 = typ1.GetElementType(); 
  
        Console.WriteLine("Element type of {0} is {1}", obj,  
                      typ2==null? "null" : typ2.ToString()); 
    } 
  
}
输出:
Element type of GFG is null

参考:



相关用法


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