Is it possible for the a.doStuff() method to print \"B did stuff\" without editing the A class? If so, how would I do that?
class Program { static void Main
Since B is effectively A through inheritance and the method is overloaded.
A a = new B(); a.doStuff();