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);
 }
Example #4
0
 public abstract void RemoveChild(ExtensionLoader extLoader);
Example #5
0
 public abstract void InsertChild(int index, ExtensionLoader extLoader);
Example #6
0
 public abstract void AddChild(ExtensionLoader extLoader);