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