Let say we have Class A and Class B. ClassB extends Class A. (ClassB : ClassA)
Now let\'s say that whenever I instantiate ClassB, I\'d like to Run some Random code and o
You can't do that with C#. Your best bet is to extract that code into it's own method in the parent and then call that from the child when you're ready.