EDN Admin
Well-known member
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
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