示例#1
0
 /// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked // Overflow is fine, just wrap
     {
         var hashCode = 41;
         // Suitable nullity checks etc, of course :)
         if (Identification != null)
         {
             hashCode = hashCode * 59 + Identification.GetHashCode();
         }
         if (PersonalInfo != null)
         {
             hashCode = hashCode * 59 + PersonalInfo.GetHashCode();
         }
         if (EmploymentDetails != null)
         {
             hashCode = hashCode * 59 + EmploymentDetails.GetHashCode();
         }
         if (WorkLocations != null)
         {
             hashCode = hashCode * 59 + WorkLocations.GetHashCode();
         }
         if (Postings != null)
         {
             hashCode = hashCode * 59 + Postings.GetHashCode();
         }
         if (Contracts != null)
         {
             hashCode = hashCode * 59 + Contracts.GetHashCode();
         }
         if (Skills != null)
         {
             hashCode = hashCode * 59 + Skills.GetHashCode();
         }
         if (Specialties != null)
         {
             hashCode = hashCode * 59 + Specialties.GetHashCode();
         }
         if (Attributes != null)
         {
             hashCode = hashCode * 59 + Attributes.GetHashCode();
         }
         if (Visas != null)
         {
             hashCode = hashCode * 59 + Visas.GetHashCode();
         }
         if (WorkingRestrictions != null)
         {
             hashCode = hashCode * 59 + WorkingRestrictions.GetHashCode();
         }
         if (Availabilities != null)
         {
             hashCode = hashCode * 59 + Availabilities.GetHashCode();
         }
         if (PersonalPattern != null)
         {
             hashCode = hashCode * 59 + PersonalPattern.GetHashCode();
         }
         return(hashCode);
     }
 }