CJCoding With Joseph

Cast With as

Dog inherits from Animal and defines a Bark() method. Complete MakeItBark so it casts the Animal argument to Dog using the as operator. If the cast succeeds (result is not null) call Bark(); otherwise print Not a dog. Do NOT write a Main method.

For a Dog argument the program prints:
Woof

For a plain Animal argument the program prints:
Not a dog

Expected Output:

Woof
Topics:
Inheritance
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.