CJCoding With Joseph

Default Interface Method

C# interfaces can provide a DEFAULT method body. Add a default method Greet() to IGreeter that returns Hello,  + Name() + !, reusing the Name() each class supplies. The Person class only implements Name(). Do NOT write a Main method.

A default interface method is called through an interface reference. For a Person named Sam the program prints:
Hello, Sam!

Expected Output:

Hello, Sam!
Topics:
Interfaces
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.