public void RemoveChild(ExtensionLoader extLoader)
 {
     _children.Remove(extLoader);
 }
 public void InsertChild(int index, ExtensionLoader extLoader)
 {
     extLoader.SetParent(this);
     _children.Insert(index, extLoader);
 }
 public void AddChild(ExtensionLoader extLoader)
 {
     extLoader.SetParent(this);
     _children.Add(extLoader);
 }
Пример #4
0
 public abstract void RemoveChild(ExtensionLoader extLoader);
Пример #5
0
 public abstract void InsertChild(int index, ExtensionLoader extLoader);
Пример #6
0
 public abstract void AddChild(ExtensionLoader extLoader);