Example #1
0
 /// <summary>
 /// Adds a child node to the xml tree
 /// </summary>
 public void AddChild(ConfigSetting child)
 {
     //Add it!
     node.AppendChild(node.OwnerDocument.ImportNode(child.node, true));
 }
Example #2
0
 /// <summary>
 /// Adds a child node to the xml tree
 /// </summary>
 public void AddChild(ConfigSetting child)
 {               //Add it!
     node.AppendChild(node.OwnerDocument.ImportNode(child.node, true));
 }