CJCoding With Joseph

Polymorphism With a List of Interfaces

The interface IAnimal declares string Speak(). Complete Cat so it returns Meow and Dog so it returns Woof. The tester puts both in a List<IAnimal> and prints each animal's sound. Do NOT write a Main method.

For a list holding a Cat then a Dog the program prints:
Meow
Woof

Expected Output:

Meow
Woof
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.