示例#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;
 }