替代由當前泛型類型定義的類型參數組成的類型數組的元素,並返回表示結果構造類型的 Type 對象。
命名空間: System
程序集: mscorlib(mscorlib.dll 中)
public virtual Type MakeGenericType( params Type[] typeArguments )
參數
typeArguments
將代替當前泛型類型的類型參數的類型數組。
返回值
Type: System.Type
Type 表示的構造類型通過以下方式形成:用 typeArguments 的元素取代當前泛型類型的類型參數。
備注
MakeGenericType 方法,您可以編寫將特定類型分配給泛型類型定義,從而創建的類型參數的代碼 Type 表示特定的構造的類型的對象。
您可以使用此 Type 對象來創建構造類型的運行時實例。
示例
下面的示例使用 MakeGenericType 方法來創建一個構造的類型的泛型類型定義從 Dictionary<TKey, TValue> 類型。
構造的類型表示 Dictionary<TKey, TValue> 的 Test 字符串的鍵的對象。
using System; using System.Reflection; using System.Collections.Generic; public class Test { public static void Main() { Console.WriteLine("\r\n--- Create a constructed type from the generic Dictionary type."); // Create a type object representing the generic Dictionary // type, by omitting the type arguments (but keeping the // comma that separates them, so the compiler can infer the // number of type parameters). Type generic = typeof(Dictionary<,>); DisplayTypeInfo(generic); // Create an array of types to substitute for the type // parameters of Dictionary. The key is of type string, and // the type to be contained in the Dictionary is Test. Type[] typeArgs = { typeof(string), typeof(Test) }; // Create a Type object representing the constructed generic // type. Type constructed = generic.MakeGenericType(typeArgs); DisplayTypeInfo(constructed); // Compare the type objects obtained above to type objects // obtained using typeof() and GetGenericTypeDefinition(). Console.WriteLine("\r\n--- Compare types obtained by different methods:"); Type t = typeof(Dictionary<String, Test>); Console.WriteLine("\tAre the constructed types equal? {0}", t == constructed); Console.WriteLine("\tAre the generic types equal? {0}", t.GetGenericTypeDefinition() == generic); } private static void DisplayTypeInfo(Type t) { Console.WriteLine("\r\n{0}", t); Console.WriteLine("\tIs this a generic type definition? {0}", t.IsGenericTypeDefinition); Console.WriteLine("\tIs it a generic type? {0}", t.IsGenericType); Type[] typeArguments = t.GetGenericArguments(); Console.WriteLine("\tList type arguments ({0}):", typeArguments.Length); foreach (Type tParam in typeArguments) { Console.WriteLine("\t\t{0}", tParam); } } } /* This example produces the following output: --- Create a constructed type from the generic Dictionary type. System.Collections.Generic.Dictionary`2[TKey,TValue] Is this a generic type definition? True Is it a generic type? True List type arguments (2): TKey TValue System.Collections.Generic.Dictionary`2[System.String, Test] Is this a generic type definition? False Is it a generic type? True List type arguments (2): System.String Test --- Compare types obtained by different methods: Are the constructed types equal? True Are the generic types equal? True */
