1
Answer

finding parent and base classes

Ask a question
ksmloh

ksmloh

20y
2.1k
1
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)

Answers (1)