コード例 #1
0
 protected bool Equals(Education other)
 {
     return string.Equals(Organization, other.Organization) && 
            string.Equals(Department, other.Department) && 
            string.Equals(Speciality, other.Speciality) && 
            Course == other.Course;
 }
コード例 #2
0
 public Person()
 {
     Education = new Education();
     Contact = new Contact();
 }