finding parent and base classes
If there is a hierarchy of classes...
public abstract class A {
}
public class B: A {
}
public class C: B {
}
How do I find out what is the parent class of C? (which is B)
How do I find out what is the base class of C? (which is A)