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