You have already completed these exercises!
Do you want to take them again?
You completed the C# Polymorphism Exercises from W3Schools.com
Share on:
Drag and drop the correct keyword to allow derived classes to override this method.
class Animal{ public void animalSound() { Console.WriteLine("The animal makes a sound"); }}