CJCoding With Joseph

Implement an Interface Method

An interface lists methods a class promises to provide. The IShape interface declares string Name(). Make Triangle implement Name() so it returns triangle. Interface members are implicitly public, so no override keyword is needed. Do NOT write a Main method.

The program prints:
triangle

Expected Output:

triangle
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.