Beispiel #1
0
 public bool CompareHuman(Human anotherhuman)
 {
     if ((FirstName == anotherhuman.GetFirstName()) && (LastName == anotherhuman.GetLastName()) &&
         (BirthDate == anotherhuman.GetBirthDate()))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }