Hello!
We have two documents with some numbers in the header. Document 1 has “123” and document 2 has “456”. Both documents also have the same field code in the header.
Here are the documents:
113.docx (20.9 KB)
213.docx (20.9 KB)
The documents were compared by running the following code:
using var comparer = new Comparer(loadPath1);
comparer.Add(loadPath2);
comparer.Compare(outputPath);
The code was run with GroupDocs.Comparison 25.2.0 in a .NET 9.0 console application on a Windows 11 machine.
I would expect the comparison result to show the change in the header. The result instead shows no changes and the summary page says “SOURCE AND TARGET FILES ARE EQUAL”.
The online tool gives the same result.