CJCoding With Joseph

Use a Method Argument in an Interface

The interface IWelcomer declares string Welcome(string name). Complete the Welcomer class so it returns Welcome,  followed by the name and an exclamation mark. Do NOT write a Main method.

For Welcome("Sam") the program prints:
Welcome, Sam!

Expected Output:

Welcome, 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.