CJCoding With Joseph

Default Interface Method

Give the IGreeter interface a default method Greet() that returns the text Hi, <Name>!, built from the interface's own Name property. Person already implements IGreeter by providing Name, and it should NOT define Greet itself — it will inherit the default. The tester calls Greet() through an IGreeter reference. Do NOT write a Main method.

For a Person named Ada the program prints:

Hi, Ada!

Expected Output:

Hi, Ada!
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.