Пример #1
0
 private int AddCenter(TagNode Node)
 {
     if (this.KeyValuePair.CompareKey(Node.KeyValuePair))
     {
         KeyValuePair.GetFileToDelete(ref Node._KeyValuePair);
     }
     if (_CenterChild == null)
     {
         _CenterChild = Node;
         return(1);
     }
     else
     {
         return(_CenterChild.AddNode(Node));
     }
 }