I have an abstract class that is the root of the class hierarchy. This root class has a method with some trivial implementation, and it seems that there is no need to change this implementation anywhere at any time.
Make this method non-virtual in order, but there is a chance that some subclass will reimplement it randomly. Is a virtual finite method the best solution in this case?
source
share