我有一串xpath之类的
/root/parent/child
/root/parent/child[1]
/root/parent/child[2]
在 c# 代码中,我正在检查 XmlDocument 中是否存在 xpath 并像这样克隆它
//Get the parent node of the node to be cloned
XmlNode NodeTobeCloned = xmlDoc.SelectSingleNode(oRow[0].ToString());
XmlNode DuplicateNode = NodeTobeCloned.CloneNode(true);
DuplicateNode.InnerText = sValue;
//Insert the node after the last child of a commoon parent
NodeTobeCloned.ParentNode.AppendChild(DuplicateNode);
我得到的结果是
<root>
<parent>
<child/>
<child/>
<child/>
</parent>
</root>
我想要这样的结果
<root>
<parent>
<child/>
</parent>
<parent>
<child/> -- [1] -predicates elements
</parent>
<parent>
<child/> -- [2] -predicates elements
</parent>
</root>
我如何使用 c# 附加到 xmldocument 谢谢