public bool Equals(CellViewModel obj) { if ((object)obj == null) { return(false); } return(this == obj); }
public override bool Equals(object obj) { if (obj == null) { return(false); } CellViewModel p = obj as CellViewModel; if ((object)p == null) { return(false); } return(this.Equals(p)); }