コード例 #1
0
ファイル: Program.cs プロジェクト: jackinf/AntonSandbox
 public void Enter(IHuman human)
 {
     human.IsAlive();
     if (human.IsRich())
     {
         Console.WriteLine("A rich human entered the house");
     }
     else
     {
         Console.WriteLine("A poor human entered the house");
     }
 }