I am trying to merge several XML files in a single XDocument object.
Merge does not exist in XDocument object. I miss this.
Has anyone already implemented a Merge extension method for XDocument, or something similar ?
|
I am trying to merge several XML files in a single XDocument object. Merge does not exist in XDocument object. I miss this. Has anyone already implemented a Merge extension method for XDocument, or something similar ? |
||||
|
|
|
I tried a bit myself :
I dont know whether it is good or bad, but it works fine to me :-) |
|||
|
|
|
Being pragmatic, That said, even with Of course, if the files are big,
|
||||
|
|
As a workaround, you could use a XSL file to merge the XML files and then transform it to a XDocument object. |
|||