Create a project/program named FirstCSOop. It should be a C\# console application. Create a base class named Animal. It should have the following methods: void move(); void sleep(); void eat(); Create three derived classes named Dog, Cat, and Bird. That inherits from Animal. For each, add the following methods: void
sing()
void wash(); void turnAround(); Each method should have some sort of code that displays to the console (suggest using Console.WriteLine) From main, instantiate Dog, Cat, and Bird objects. Call each method of each object, including the inherited ones.