โ Back to Polymorphism
Question 580
Polymorphic ToString
Polymorphic ToString
Console.WriteLineon an object calls that object'sToString(), and the object's real type decides which version runs. TheEmployeeclass overridesToString()to returnEmployee. OverrideToString()inManagerso it returnsManager. Do NOT write aMainmethod. The tester stores aManagerin anEmployeevariable 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.