コード例 #1
0
 public void RemoveChild(ExtensionLoader extLoader)
 {
     _children.Remove(extLoader);
 }
コード例 #2
0
 public void InsertChild(int index, ExtensionLoader extLoader)
 {
     _children.Insert(index, extLoader);
 }
コード例 #3
0
 public void AddChild(ExtensionLoader extLoader)
 {
     _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);