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); }