GroupDocs.Comparison for .NET 20.3 Release Notes

Major Features

Below the list of changes in release of GroupDocs.Comparison for .NET 20.3:

  • Improved performance of multiple comparing of text documents
  • Fixed creating output HTML file while comparing source code files
  • Fixed exception when compare Diagrams documents
  • Fixed System.StackOverflownException when comparing PDF with images .NET
KeySummaryIssue Type
COMPARISONNET-2214Increase performance for TXT MultiComparerImprovement
COMPARISONNET-2235TextComparerResult does not create .html file for programming languages filesBug
COMPARISONNET-2211System.StackOverflownException when comparing PDF with images .NETBug
COMPARISONNET-2209Comparing two vsdx files throws an exceptionBug
COMPARISONNET-2208Diagram text line break problemBug

Public API and Backward Incompatible Changes

Getting Target text from Words documents

Starting from version 20.3 GroupDocs.Comparison allows to getting target text of specific changes in Result document this working for Word documents.

To use this feature you should specify in GetChanges TargetText property

using (Comparer comparer = new Comparer(sourceDocumentPath))
{
     comparer.Add(targetDocumentPath);
     comparer.Compare(outputPath);
     ChangeInfo[] changes = comparer.GetChanges();
     foreach (var change in changes)
     {
         var targetText = change.TargetText;
         Console.WriteLine(targetText);
     }
}