public bool Contains(ChannelHelper value)
 {
     // If value is not of type Int16, this will return false.
     return(List.Contains(value));
 }
 public void Remove(ChannelHelper value)
 {
     List.Remove(value);
 }
 public int IndexOf(ChannelHelper value)
 {
     return(List.IndexOf(value));
 }
 public void Insert(int index, ChannelHelper value)
 {
     List.Insert(index, value);
 }
 public int Add(ChannelHelper value)
 {
     return(List.Add(value));
 }