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