Пример #1
0
 public bool Contains(TableEntry <T> item)
 {
     throw new NotImplementedException();
 }
Пример #2
0
 public bool Remove(TableEntry <T> item)
 {
     throw new NotImplementedException();
 }
Пример #3
0
 public void Add(TableEntry <T> item)
 {
     _items.Add(item);
     _total += item.Weight;
 }