public bool Equals(TableItem <TRow, TCol, TValue> other) { return(Row.Equals(other.Row) && Col.Equals(other.Col) && Value.Equals(other.Value)); }
public void Add(TableItem <TRow, TCol, TValue> item) { Add(item.Row, item.Col, item.Value); }