CJCoding With Joseph

Test for an Interface With `is`

Complete the static method ShapeInspector.Describe(object item). If item implements IShape, return Area is  followed by its area; otherwise return Not a shape. Use the is type-check. Do NOT write a Main method.

For a Rectangle(2, 5) then the string "hello" the program prints:
Area is 10
Not a shape

Expected Output:

Area is 10
Not a shape
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.