C# reflection: check if a class is derived from a generic class - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T13:35:16Zhttp://stackoverflow.com/feeds/question/457676http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/457676/c-reflection-check-if-a-class-is-derived-from-a-generic-class13C# reflection: check if a class is derived from a generic classbernhardrusch2009-01-19T14:10:18Z2009-05-22T14:46:24Z
<p>I have a generic class in my project with derived classes.</p>
<pre><code>public class GenericClass <T> : GenericInterface<T>
{
......
}
public class Test : GenericClass <SomeType>
{
}
</code></pre>
<p>Is there any way to find out if a Type object is derived from the GenericClass ?</p>
<pre><code>t.IsSubclassOf(typeof(GenericClass<>))
</code></pre>
<p>is not working.</p>
http://stackoverflow.com/questions/457676/c-reflection-check-if-a-class-is-derived-from-a-generic-class/457690#4576901Answer by Jon Skeet for C# reflection: check if a class is derived from a generic classJon Skeet2009-01-19T14:14:30Z2009-01-19T14:34:50Z<p>Change your code to:</p>
<pre><code>if (t.GetGenericTypeDefinition().IsSubclassOf(typeof(GenericClass<>))
</code></pre>
<p>I <em>think</em> that should work. One thing to note - IsSubclassOf returns <code>false</code> if the two types are the same. It also doesn't handle interfaces. you might want to consider</p>
<pre><code>if (typeof(GenericClass<>).IsAssignableFrom(t.GetGenericTypeDefinition())
</code></pre>
<p>EDIT: Given Jared's objection, and the possibility of <code>class X : GenericClass<string></code> it's possible that you'll need to walk the hierarchy of base classes, checking <code>if (type.IsGenericType && t.GetGenericTypeDefinition() == typeof(GenericClass<>))</code> at each level. (i.e. the code Jared's posted :)</p>
http://stackoverflow.com/questions/457676/c-reflection-check-if-a-class-is-derived-from-a-generic-class/457708#45770820Answer by JaredPar for C# reflection: check if a class is derived from a generic classJaredPar2009-01-19T14:19:44Z2009-01-19T14:19:44Z<p>Try this code</p>
<pre><code>static bool IsSubclassOfRawGeneric(Type generic, Type toCheck) {
while (toCheck != typeof(object)) {
var cur = toCheck.IsGenericType ? toCheck.GetGenericTypeDefinition() : toCheck;
if (generic == cur) {
return true;
}
toCheck = toCheck.BaseType;
}
return false;
}
</code></pre>
http://stackoverflow.com/questions/457676/c-reflection-check-if-a-class-is-derived-from-a-generic-class/458406#4584060Answer by alexfeygin for C# reflection: check if a class is derived from a generic classalexfeygin2009-01-19T17:21:47Z2009-01-19T17:21:47Z<p>JaredPar's code works but only for one level of inheritance. For unlimited levels of inheritance, use the following code</p>
<pre><code>public bool IsTypeDerivedFromGenericType(Type typeToCheck, Type genericType)
{
if (typeToCheck == typeof(object))
{
return false;
}
else if (typeToCheck == null)
{
return false;
}
else if (typeToCheck.IsGenericType && typeToCheck.GetGenericTypeDefinition() == genericType)
{
return true;
}
else
{
return IsTypeDerivedFromGenericType(typeToCheck.BaseType, genericType);
}
}
</code></pre>
http://stackoverflow.com/questions/457676/c-reflection-check-if-a-class-is-derived-from-a-generic-class/458753#4587534Answer by EnocNRoll for C# reflection: check if a class is derived from a generic classEnocNRoll2009-01-19T19:08:08Z2009-01-19T19:08:08Z<p>(Reposted due to a massive rewrite)</p>
<p>JaredPar's code answer is fantastic, but I have a tip that would make it unnecessary if your generic types are not based on value type parameters. I was hung up on why the "is" operator would not work, so I have also documented the results of my experimentation for future reference. Please enhance this answer to further enhance its clarity. </p>
<h2>TIP:</h2>
<p>If you make certain that your GenericClass implementation inherits from an abstract non-generic base class such as GenericClassBase, you could ask the same question without any trouble at all like this:</p>
<pre><code>typeof(Test).IsSubclassOf(typeof(GenericClassBase))
</code></pre>
<p><hr /></p>
<h2>IsSubclassOf()</h2>
<p>My testing indicates that IsSubclassOf() does not work on parameterless generic types such as </p>
<pre><code>typeof(GenericClass<>)
</code></pre>
<p>whereas it will work with </p>
<pre><code>typeof(GenericClass<SomeType>)
</code></pre>
<p>Therefore the following code will work for any derivation of GenericClass<>, assuming you are willing to test based on SomeType:</p>
<pre><code>typeof(Test).IsSubclassOf(typeof(GenericClass<SomeType>))
</code></pre>
<p>The only time I can imagine that you would want to test by GenericClass<> is in a plug-in framework scenario.</p>
<p><hr /></p>
<h2>Thoughts on the "is" operator</h2>
<p>At design-time C# does not allow the use of parameterless generics because they are essentially not a complete CLR type at that point. Therefore, you must declare generic variables with parameters, and that is why the "is" operator is so powerful for working with objects. Incidentally, the "is" operator also can not evaluate parameterless generic types.<BR></p>
<p>The "is" operator will test the entire inheritance chain, including interfaces. </p>
<p>So, given an instance of any object, the following method will do the trick:</p>
<pre><code>bool IsTypeof<T>(object t)
{
return (t is T);
}
</code></pre>
<p>This is sort of redundant, but I figured I would go ahead and visualize it for everybody. </p>
<p>Given </p>
<pre><code>var t = new Test();
</code></pre>
<p>The following lines of code would return true:</p>
<pre><code>bool test1 = IsTypeof<GenericInterface<SomeType>>(t);
bool test2 = IsTypeof<GenericClass<SomeType>>(t);
bool test3 = IsTypeof<Test>(t);
</code></pre>
<p>On the other hand, if you want something specific to GenericClass, you could make it more specific, I suppose, like this:</p>
<pre><code>bool IsTypeofGenericClass<SomeType>(object t)
{
return (t is GenericClass<SomeType>);
}
</code></pre>
<p>Then you would test like this:</p>
<pre><code>bool test1 = IsTypeofGenericClass<SomeType>(t);
</code></pre>
http://stackoverflow.com/questions/457676/c-reflection-check-if-a-class-is-derived-from-a-generic-class/668251#6682511Answer by for C# reflection: check if a class is derived from a generic class2009-03-20T22:38:46Z2009-03-20T22:38:46Z<p>Here's a little method I created for checking that a object is derived from a specific type. Works great for me!</p>
<pre><code>internal static bool IsDerivativeOf(this Type t, Type typeToCompare)
{
if (t == null) throw new NullReferenceException();
if (t.BaseType == null) return false;
if (t.BaseType == typeToCompare) return true;
else return t.BaseType.IsDerivativeOf(typeToCompare);
}
</code></pre>
http://stackoverflow.com/questions/457676/c-reflection-check-if-a-class-is-derived-from-a-generic-class/677239#6772390Answer by Patrick Rudzitis for C# reflection: check if a class is derived from a generic classPatrick Rudzitis2009-03-24T12:53:18Z2009-03-24T12:53:18Z<pre><code>Type _type = myclass.GetType();
PropertyInfo[] _propertyInfos = _type.GetProperties();
Boolean _test = _propertyInfos[0].PropertyType.GetGenericTypeDefinition()
== typeof(List<>);
</code></pre>
http://stackoverflow.com/questions/457676/c-reflection-check-if-a-class-is-derived-from-a-generic-class/897388#8973880Answer by it depends for C# reflection: check if a class is derived from a generic classit depends2009-05-22T11:18:56Z2009-05-22T14:46:24Z<p>It might be overkill but I use extension methods like the following. They check interfaces as well as subclasses. It can also return the type that has the specified generic defintion.</p>
<p>E.g. for the example in the question it can test against GenericInterface as well as GenericClass. The returned type can be used with GetGenericArguments to determine that the generic argument type is "SomeType".</p>
<pre><code>public static bool HasGenericDefinition(this Type type, Type definition)
{
return GetTypeWithGenericDefinition(type, definition) != null;
}
public static Type GetTypeWithGenericDefinition(this Type type, Type definition)
{
if (type == null)
throw new ArgumentNullException("type");
if (definition == null)
throw new ArgumentNullException("genericTypeDefinition");
if (!definition.IsGenericTypeDefinition)
throw new ArgumentException(
"The definition needs to be a GenericTypeDefinition", "definition");
if (definition.IsInterface)
foreach (var interfaceType in type.GetInterfaces())
if (interfaceType.IsGenericType
&& interfaceType.GetGenericTypeDefinition() == definition)
return interfaceType;
for (Type t = type; t != null; t = t.BaseType)
if (t.IsGenericType
&& t.GetGenericTypeDefinition() == definition)
return t;
return null;
}
</code></pre>