Example #1
0
 public bool Equals(CCell obj)
 {
     return(row == obj.row && col == obj.col);
 }
Example #2
0
 public void Set(CCell newPoint)
 {
     this.row = newPoint.row;
     this.col = newPoint.col;
 }