Example #1
0
 public override void Eat(Herbivore h)
 {
     // Eat Bison
       Console.WriteLine(this.GetType().Name +
     " eats " + h.GetType().Name);
 }
Example #2
0
 public override void Eat(Herbivore a)
 {
     // Eat elephant
     Console.WriteLine(this.GetType().Name +
         " eats " + a.GetType().Name);
 }