コード例 #1
0
ファイル: Student.cs プロジェクト: titanXL/SoftwareUniversity
 public bool IsOlderThan(Student other)
 {
     return this.GetAge() > other.GetAge();
 }
コード例 #2
0
ファイル: Student.cs プロジェクト: Vakuu/CSharp
 public bool IsOlderThan(Student other)
 {
     return(this.GetAge() > other.GetAge());
 }