Posted on: 9/29/2015 9:19:33 PM | Views : 840

I have two xml files
first xml:
<?xml version="1.0" encoding="UTF-8"?> <Content> <ContentId>78398</ContentId> <Title><![CDATA[1.1]]></Title> <Description><![CDATA[<p></em>.</p>]]></Description> <Links> <Id>123</Id> <Id>456</Id> </Links> </Content> second xml:
<Content> <ContentId>78398</ContentId> <Title><![CDATA[1.1]]></Title> <Description><![CDATA[<p></em>.</p>]]></Description> <Links> <Id>456</Id> <Id>123</Id> </Links> </Content> I want to compare the above two xml files and see if they are identical. Child nodes can be in any order.
string currentFilePath ...

Go to the complete details ...