Пример #1
0
 public bool IsSameAgeAs(Person otherPerson)
 {
     return(GetAgeSpan() == otherPerson.GetAgeSpan());
 }
Пример #2
0
 public bool IsOlderThan(Person otherPerson)
 {
     return(GetAgeSpan() > otherPerson.GetAgeSpan());
 }