示例#1
0
 public void LetsVote(Voter voterAge, IsVoteAble isVoteAble)
 {
     if (isVoteAble(voterAge))
     {
         Console.WriteLine("You can vote.\n");
     }
     else
     {
         Console.WriteLine("Please wait child.\n");
     }
 }
 public void LetsVote(Voter voterAge, IsVoteAble isVoteAble)
 {
     if (isVoteAble(voterAge))
     {
         Console.WriteLine("You can vote.\n");
     }
     else
     {
         Console.WriteLine("Please wait child.\n");
     }
 }