public void Remove(PropertyConfigElement element)
 {
     if (BaseIndexOf(element) >= 0)
     {
         BaseRemove(IndexOf(element.Name));
     }
 }
 public void Add(PropertyConfigElement element)
 {
     BaseAdd(element);
 }
 public PropertyConfigurationCollection()
 {
     PropertyConfigElement details = (PropertyConfigElement)CreateNewElement();
 }