public int IndexOf(FilterControl fc) { return this.List.IndexOf(fc); }
public void CopyTo(FilterControl[] array, int index) { this.List.CopyTo(array, index); }
public void Remove(FilterControl fc) { this.List.Remove(fc); }
public bool Contains(FilterControl fc) { return this.List.Contains(fc); }
public void Add(FilterControl fc) { this.List.Add(fc); }
public void Insert(int index, FilterControl fc) { this.List.Insert(index, fc); }
public int IndexOf(FilterControl fc) { return(this.List.IndexOf(fc)); }
public bool Contains(FilterControl fc) { return(this.List.Contains(fc)); }