C Sharp (C#) - Polymorphism and Abstract Classes
You have an abstract class with an abstract method and a concrete method. You want to extend it with a subclass that overrides the abstract method and also calls the base concrete method. How should you implement this in C#?
