Esempio n. 1
0
 public Student(int p1, string p2, School p3)
 {
     this.Nr     = p1;
     this.Name   = p2;
     this.School = p3;
 }
Esempio n. 2
0
File: School.cs Progetto: nlaert/AVE
        public override bool Equals(object obj)
        {
            School s = obj as School;

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