コード例 #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();
 }