小编典典

检查一个类是否派生自一个泛型类

c#

我的项目中有一个带有派生类的泛型类。

public class GenericClass<T> : GenericInterface<T>
{
}

public class Test : GenericClass<SomeType>
{
}

有没有办法找出Type对象是否源自GenericClass

t.IsSubclassOf(typeof(GenericClass<>))

不起作用。


阅读 285

收藏
2020-05-19

共1个答案

小编典典

试试这个代码

static bool IsSubclassOfRawGeneric(Type generic, Type toCheck) {
    while (toCheck != null && toCheck != typeof(object)) {
        var cur = toCheck.IsGenericType ? toCheck.GetGenericTypeDefinition() : toCheck;
        if (generic == cur) {
            return true;
        }
        toCheck = toCheck.BaseType;
    }
    return false;
}
2020-05-19