public int IndexOf(FileConfigElement filePathElement)
 {
     return BaseIndexOf(filePathElement);
 }
 public void Remove(FileConfigElement filePathElement)
 {
     if (BaseIndexOf(filePathElement) >= 0)
         BaseRemove(filePathElement.FilePath);
 }
 public void Add(FileConfigElement filePathElement)
 {
     BaseAdd(filePathElement);
     // Add custom code here.
 }