本文介绍了检查是否类是从一个通用类派生的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在我的项目一个通用类派生类。
I have a generic class in my project with derived classes.
public class GenericClass<T> : GenericInterface<T>
{
}
public class Test : GenericClass<SomeType>
{
}
有没有办法找出是否键入
对象从 GenericClass
?
t.IsSubclassOf(typeof(GenericClass<>))
不起作用。
推荐答案
试试这个code
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;
}
这篇关于检查是否类是从一个通用类派生的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!