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