public bool isEqualInCandidates(MyCell cell) { return(this.candidates.SequenceEqual(cell.candidates)); }
public object Clone() { var clone = new MyCell(this.index, this.value, this.candidates, this.isFixed); return(clone); }