예제 #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();
 }