Why do I get "Illegal characters in path" while using XmlDiff to compare 2 xml files?
- by Patryk
I have a problem trying to compare 2 xml files with the XmlDiff library from Microsoft.
I am using an overloaded function which passes 2 xmls as strings :
xmldiff = new XmlDiff(XmlDiffOptions.IgnoreChildOrder | XmlDiffOptions.IgnorePrefixes | XmlDiffOptions.IgnoreNamespaces);
bool identical = xmldiff.Compare(first, last, false);
where first and…