Home Page › Forums › BizTalk 2004 – BizTalk 2010 › How to compare 2 xml files using C#.net (compare only nodes..not values) › Re: How to compare 2 xml files using C#.net (compare only nodes..not values)
November 13, 2013 at 3:39 PM
#26209
load the file in xml doc and than
if (doc.InnerXml.Length != doc2.InnerXml.Length)
{
return false;
}