How to get the between 2 Xelement objects ?

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
Hello,
I have 2 xml files and both the XML files have same schema.
I have used XElement classes to load the XML files and now if I want to find the difference between 2 XElements then how can I get it ?
XElement xml1 =XElement.Load(XMLFile1);
XElement xml2 =XElement.Load(XMLFile2);
I want list of nodes which is not present in either of the XML files.

Thanks in Advance
Vyasa

View the full article
 
Back
Top