Merging XmlDocumentFragment into XmlDocument
Hi, how can I insert XmlDocumentFragment into XmlDocument without creating duplicate nodes?
For example, if I have
<root>
<onmytable>
<book></book>
<cup></cup>
</onmytable>
</root>
and want to insert this:
<root>
<onmytable>
<book></book>
<pen></pen>
</onmytable>
</root>
as you guess to result in:
<root>
<onmytable>
<book></book>
<cup></cup>
<pen></pen>
</onmytable>
</root>

