My strategy is:
- Use XDocument.load() to read the XML files
- Create an array with the root nodes of interest
- if the root nodes (for one XML-file) does not exist in the other XML-file, create a new XML file and paste the node (incl. elements and attributes) in there.
- Save the new document.
Are there any easier strategies than mine?
Do you have any advices of how I can solve this?