โ Back to Polymorphism
Question 585
Implement an Abstract Property
Implement an Abstract Property
Abstract classes can declare abstract properties that each derived class must fill in. The abstract classEmployeedeclaresabstract string Role { get; }. Implement theRoleproperty inDeveloperso its getter returnsDeveloper. Do NOT write aMainmethod. 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.