CJCoding With Joseph

Virtual Property Override

The base class Employee has a virtual read-only property Role that returns Employee. Override Role in the Manager class so it returns Manager. Properties can be virtual and overridden just like methods. Do NOT write a Main method.

The tester runs Employee 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.