Esempio n. 1
0
 public bool Contains(WeightedSamplingItem <T> item)
 {
     return(_Items.Contains(item));
 }
Esempio n. 2
0
 public bool Remove(WeightedSamplingItem <T> item)
 {
     return(_Items.Remove(item));
 }
Esempio n. 3
0
 public void Add(WeightedSamplingItem <T> item)
 {
     _Items.Add(item);
 }