How to get the super class from an IClassDeclaration
Lets say I have a class
public class Base {}
and then
public class Upper : Base {}
if I have the IClassDeclaration for the Upper class, is there any way to get either the IClassDeclaration, or the IDeclaredType of the Base class?
Please sign in to leave a comment.