public int IndexOf(NumericRange value)
 {
     return(base.List.IndexOf(value));
 }
 public void Insert(int index, NumericRange value)
 {
     base.List.Insert(index, value);
 }
 public void Remove(NumericRange value)
 {
     base.List.Remove(value);
 }
 public bool Contains(NumericRange value)
 {
     return(base.List.Contains(value));
 }
 public int Add(NumericRange value)
 {
     return(base.List.Add(value));
 }