Ejemplo n.º 1
0
 // this is wrong.  Need Equals override on Board
 public bool Equals(BoardMove other)
 {
     return(depth == other.depth && board.Equals(other.board));
 }
Ejemplo n.º 2
0
 // this is wrong.  Need Equals override on Board
 public bool Equals(BoardMove other)
 {
     return(depth == other.depth && move.Equals(other.move));
 }