コード例 #1
0
 public bool IsOlderThan(IStudent other)
 {
     bool isOlder = this.GetAge() - other.GetAge() > 0;
     return isOlder;
 }