public void Remove(XmlAnyElementAttribute attribute)
 {
     List.Remove(attribute);
 }
 public void Insert(int index, XmlAnyElementAttribute attribute)
 {
     List.Insert(index, attribute);
 }
 public bool Contains(XmlAnyElementAttribute attribute)
 {
     return(List.Contains(attribute));
 }
 public int IndexOf(XmlAnyElementAttribute attribute)
 {
     return(List.IndexOf(attribute));
 }
 public int Add(XmlAnyElementAttribute attribute)
 {
     return((List as IList).Add(attribute));
 }