public void RemoveChild(ExtensionLoader extLoader)
 {
     _children.Remove(extLoader);
 }
 public void InsertChild(int index, ExtensionLoader extLoader)
 {
     _children.Insert(index, extLoader);
 }
 public void AddChild(ExtensionLoader extLoader)
 {
     _children.Add(extLoader);
 }
Exemple #4
0
 public abstract void RemoveChild(ExtensionLoader extLoader);
Exemple #5
0
 public abstract void InsertChild(int index, ExtensionLoader extLoader);
Exemple #6
0
 public abstract void AddChild(ExtensionLoader extLoader);