โ Back to Polymorphism
Question 557
Virtual Property Override
Virtual Property Override
The base classEmployeehas avirtualread-only propertyRolethat returnsEmployee. OverrideRolein theManagerclass so it returnsManager. Properties can be virtual and overridden just like methods. Do NOT write aMainmethod. The tester runsEmployee e = new Manager(); Console.WriteLine(e.Role);and 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.