示例#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());
 }