static void Main(string[] args) { //Shark and Shrimp Object Shark cShark = new Shark(); Shrimp lenny = new Shrimp(); //Call the Eat method cShark.Eat(); lenny.Eat(); }