Most voted "subclass" questions
3 questions
Sort by count of
-
6
votes2
answers6436
viewsClass, Superclass and Subclass
Regarding inheritance by code reuse in C# I have the following doubt: What’s the difference between classes, superclasses and subclasses? This changes something when doing code reuse? Additional…
-
0
votes1
answer170
viewssubclass does not incorporate super class method
This is the first time I’ve had this mistake. I have the Class Loja that extends into several subclasses. problem is that subclasses do not "ask" the super method Shop: public abstract class Loja {…
-
0
votes1
answer77
viewsC# - How to create an implementation contract with subclasses to be implemented?
I would like to create an interface (called Interfacex) interface InterfaceX { ... } Where your future implementation returns the following structure:…