How do I execute some code in a superclass after all the subclasses have been constructed?
- by Thiado de Arruda
Is there a way to do this in C#? I know that the subclass will call the superclass constructor before calling its own constructor, but what If I have some code on the superclass that should only be executed after all the subclasses constructors have been called?