當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。