Пример #1
0
        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();
        }
Пример #2
0
        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();
        }