コード例 #1
0
 public static void Remove(XMsgManager parent, XMsgManager child)
 {
     if (parent == null || child == null)
     {
         return;
     }
     parent._DelChild(child);
     child._SetParent(null);
 }
コード例 #2
0
 public static void Append(XMsgManager parent, XMsgManager child)
 {
     if (parent == null || child == null)
     {
         return;
     }
     parent._AddChild(child);
     child._SetParent(parent);
 }