/// <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)); }