public void RemoveChild(string name)
 {
     if (_sections != null)
     {
         _sections.Remove(name);
     }
     if (_groups != null)
     {
         _groups.Remove(name);
     }
 }
Exemple #2
0
 public void RemoveChild(string name)
 {
     modified = true;
     if (sections != null)
     {
         sections.Remove(name);
     }
     if (groups != null)
     {
         groups.Remove(name);
     }
 }