Change your code to:
if (t.GetGenericTypeDefinition().IsSubclassOf(typeof(GenericClass<>))
I think that should work. One thing to note - IsSubclassOf returns false if the two types are the same. It also doesn't handle interfaces. you might want to consider
if (typeof(GenericClass<>).IsAssignableFrom(t.GetGenericTypeDefinition())
EDIT: Given Jared's objection, and the possibility of class X : GenericClass<string> it's possible that you'll need to walk the hierarchy of base classes, checking if (type.IsGenericType && t.GetGenericTypeDefinition() == typeof(GenericClass<>)) at each level. (i.e. the code Jared's posted :)
