Esempio n. 1
0
 public bool Contains(TableEntry <T> item)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
 public bool Remove(TableEntry <T> item)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 public void Add(TableEntry <T> item)
 {
     _items.Add(item);
     _total += item.Weight;
 }