Exemplo n.º 1
0
 public void Remove(AggregateOption item)
 {
     if (this.BaseIndexOf(item) >= 0)
     {
         this.BaseRemove(item.Name);
     }
 }
Exemplo n.º 2
0
 public void Add(AggregateOption option)
 {
     this.BaseAdd(option);
 }
Exemplo n.º 3
0
 public int IndexOf(AggregateOption item)
 {
     return(this.BaseIndexOf(item));
 }