namespace OOP.Animals { public class Parrot : Animal { public Parrot() { this.Name = this.GetType().Name; } public override void MakeSound() { Console.WriteLine("Sqawk"); } } }