CJCoding With Joseph

Implement an Abstract Property

Abstract classes can declare abstract properties that each derived class must fill in. The abstract class Employee declares abstract string Role { get; }. Implement the Role property in Developer so its getter returns Developer. Do NOT write a Main method.

The program prints:
Developer

Expected Output:

Developer
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.