GroupDocs.Comparison for .NET 23.9 Release Notes

Full list of changes in this release

KeyCategorySummary
COMPARISONNET-3595FeatureImplement feature to show extended comparison statistics on summary page

Showing extended comparison statistics on Summary Page

Starting from 23.9 we’ve introduced an ability to show extended comparison statistics on Summary Page. This feature currently supported for Words, PDF, Diagrams, HTML and raw text formats. Here is a code snippet how to enable this feature.

using System;
using GroupDocs.Comparison;
using GroupDocs.Comparison.Options;
class YoursProgram
{
  static void Main(string[] args)
  {
      using (Comparer comparer = new Comparer(sourcePath))
      {
	    comparer.Add(targetPath);
	    CompareOptions options = new CompareOptions() {ExtendedSummaryPage = true};
	    comparer.Compare(resultPath, options);
      }

  }
}

more details could be found on documentation here.