示例#1
0
文件: Program.cs 项目: bigboyTaysh/c-
 static void FeedHerbivores(IHerbivores herbivores)
 {
     herbivores.FindFood();
     herbivores.EatPlant();
 }
示例#2
0
 public void FeedingOneHerbivore(IHerbivores herbivore)
 {
     herbivore.FindFood();
     herbivore.EatThePlant();
 }