예제 #1
0
파일: Cell.cs 프로젝트: vfridell/Gipf
 public override int GetHashCode()
 {
     return(_hex.GetHashCode() + Piece.GetHashCode());
 }
예제 #2
0
 public override int GetHashCode()
 {
     return(_from.GetHashCode() * 7 + _to.GetHashCode() * 23 + _isGipf.GetHashCode()
            + _removeAfterParts.GetHashCode() + _removeBeforeParts.GetHashCode());
 }