If the type of child is the type of the parent
3 answers
You can also use Type.IsSubclassOf
inherited.GetType().IsSubclassOf(typeof(Base));
+3
source to share