public void Remove(NotSupported item)
 {
     InnerList.Remove(item);
 }
 public int IndexOf(NotSupported item)
 {
     return(InnerList.IndexOf(item));
 }
 public void Add(NotSupported item)
 {
     InnerList.Add(item);
 }