示例#1
0
文件: Student.cs 项目: nlaert/AVE
 public Student(int p1, string p2, School p3)
 {
     this.Nr     = p1;
     this.Name   = p2;
     this.School = p3;
 }
示例#2
0
文件: School.cs 项目: nlaert/AVE
        public override bool Equals(object obj)
        {
            School s = obj as School;

            return(s.Name == this.Name && s.Location == this.Location);
        }