예제 #1
0
 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());
 }