If I have two string of xml1 and xml2 which both represent xml in the same format. What is the fastest way to combine these together? The format is not important, but I ju
var doc= XDocument.Load("file1.xml"); var doc1= XDocument.Load("file2.xml"); doc.Root.Add(doc2.Root.Elements());