协慌网

登录 贡献 社区

如何从泛型类或方法的成员中获取 T 的类型?

假设我在类或方法中有一个通用成员,因此:

public class Foo<T>
{
    public List<T> Bar { get; set; }

    public void Baz()
    {
        // get type of T
    }   
}

当我实例化该类时, T变为MyTypeObject1 ,因此该类具有通用列表属性: List<MyTypeObject1> 。非泛型类中的泛型方法也是如此:

public class Foo
{
    public void Bar<T>()
    {
        var baz = new List<T>();

        // get type of T
    }
}

我想知道,我的班级列表包含什么类型的对象。因此,称为Bar或局部变量baz的列表属性包含什么类型的T

我不能执行Bar[0].GetType() ,因为列表可能包含零个元素。我该怎么做?

答案

如果我理解正确,那么您的列表与容器类本身具有相同的类型参数。如果是这种情况,则:

Type typeParameterType = typeof(T);

如果您很幸运地将object作为类型参数,请参阅Marc 的答案

(注意:我假设您所知道的只是objectIList或类似内容,并且列表在运行时可以是任何类型)

如果您知道它是List<T> ,则:

Type type = abc.GetType().GetGenericArguments()[0];

另一种选择是查看索引器:

Type type = abc.GetType().GetProperty("Item").PropertyType;

使用新的 TypeInfo:

using System.Reflection;
// ...
var type = abc.GetType().GetTypeInfo().GenericTypeArguments[0];

使用以下扩展方法,您可以不加思索地逃脱:

public static Type GetListType<T>(this List<T> _)
{
    return typeof(T);
}

或更笼统:

public static Type GetEnumeratedType<T>(this IEnumerable<T> _)
{
    return typeof(T);
}

用法:

List<string>        list    = new List<string> { "a", "b", "c" };
IEnumerable<string> strings = list;
IEnumerable<object> objects = list;

Type listType    = list.GetListType();           // string
Type stringsType = strings.GetEnumeratedType();  // string
Type objectsType = objects.GetEnumeratedType();  // BEWARE: object