English 中文(简体)
反射 - 从 System.Type 实例获取通用参数
原标题:
  • 时间:2008-11-16 14:08:31
  •  标签:

如果我有以下代码:

MyType<int> anInstance = new MyType<int>();
Type type = anInstance.GetType();

我怎样能够通过查看类型变量来找出“anInstance”被实例化的类型参数是哪些?这是否可能?

最佳回答

使用Type.GetGenericArguments。例如:

using System;
using System.Collections.Generic;

public class Test
{
    static void Main()
    {
        var dict = new Dictionary<string, int>();

        Type type = dict.GetType();
        Console.WriteLine("Type arguments:");
        foreach (Type arg in type.GetGenericArguments())
        {
            Console.WriteLine("  {0}", arg);
        }
    }
}

输出

Type arguments:
  System.String
  System.Int32
问题回答

使用 Type.GetGenericArguments()。例如:

using System;
using System.Reflection;

namespace ConsoleApplication1 {
  class Program {
    static void Main(string[] args) {
      MyType<int> anInstance = new MyType<int>();
      Type type = anInstance.GetType();
      foreach (Type t in type.GetGenericArguments())
        Console.WriteLine(t.Name);
      Console.ReadLine();
    }
  }
  public class MyType<T> { }
}

Output: Int32





相关问题
热门标签