CJCoding With Joseph

Extend the Base Method with base

The base class Greeter has a virtual method Greet() that returns Hello. Override Greet() in FriendlyGreeter so it returns the base greeting followed by , friend. Use base.Greet() to reuse the base result instead of retyping Hello. Do NOT write a Main method.

The program prints:
Hello, friend

Expected Output:

Hello, friend
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.