CJCoding With Joseph

Polymorphic ToString

Console.WriteLine on an object calls that object's ToString(), and the object's real type decides which version runs. The Employee class overrides ToString() to return Employee. Override ToString() in Manager so it returns Manager. Do NOT write a Main method.

The tester stores a Manager in an Employee variable and prints it, so the program prints:
Manager

Expected Output:

Manager
Topics:
Polymorphism
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.