XML Structure:
Create a new mask_list node, a procedure node, and add all descendants of the Mask_list and procedure nodes above to the newly created mask_list and procedure nodes
XmlElement mask_list = xmldoc.createelement ("Mask_list");
XmlElement procedure = xmldoc.createelement ("procedure");
XmlNode xn_mask_list = XmlDoc.DocumentElement.SelectSingleNode ("/xwsp/lab_list/lab[name/text () = ']/mask_list") ;
XmlNode xn_procedure = XmlDoc.DocumentElement.SelectSingleNode ("/xwsp/lab_list/lab[name/text () = ']/procedure") ;
if (xn_mask_list!= null)
{
mask_list. INNERXML = Xn_mask_list. InnerXml;
}
if (xn_procedure!= null)
{
procedure. INNERXML = Xn_procedure. InnerXml;
}
The above is a small series to introduce the C # copy of the specified node all descendants node to the new node, hope for everyone to help, if you have any questions please give me a message, small series will promptly reply to everyone. Here also thank you very much for the cloud Habitat Community website support!