コード例 #1
0
 public void InsertChild(int index, ExtensionLoader extLoader)
 {
     extLoader.SetParent(this);
     _children.Insert(index, extLoader);
 }
コード例 #2
0
 public void AddChild(ExtensionLoader extLoader)
 {
     extLoader.SetParent(this);
     _children.Add(extLoader);
 }