예제 #1
0
파일: Company.cs 프로젝트: fuuman/101worker
 public override int GetHashCode()
 {
     unchecked
     {
         return(((Name != null ? Name.GetHashCode() : 0) * 397) ^ (Departments != null ? Departments.GetHashCode() : 0));
     }
 }