โ Back to Interfaces
Question 613
Test for an Interface With `is`
Test for an Interface With `is`
Complete the static methodShapeInspector.Describe(object item). IfitemimplementsIShape, returnArea isfollowed by its area; otherwise returnNot a shape. Use theistype-check. Do NOT write aMainmethod. For aRectangle(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.