CJCoding With Joseph

Override A Property

Properties can be virtual and overridden just like methods. Employee has a virtual read-only property Role whose getter returns Employee. Override Role in Manager so its getter returns Manager. Do NOT write a Main method.

When the tester stores a Manager in an Employee variable and prints Role, the program prints:
Manager

Expected Output:

Manager
Topics:
Inheritance
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.