Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

GroupDocs.Comparison for .NET 24.7(DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 193.92MB
  • Date Added:
  • 30/7/2024

Description

This ZIP file contains only the GroupDocs.Comparison for .NET 24.7 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use GroupDocs.Comparison for .NET without the MSI installer.This ZIP download does not contain the demo projects

File Details

The latest update for GroupDocs.Comparison for .NET, version 24.7, DLLs-only package is here! This release equips developers with a valuable feature for fine-tuning table comparisons and incorporates bug fixes for a simplified .NET development experience across platforms.

Table Comparison Sensitivity Control

With this .NET document comparison API release, the CompareOptions.SensitivityOfComparisonForTables property has been introduced. It helps developers tailor comparison strictness, particularly for tables within documents, and obtain enriched comparison results on Windows, Linux, and macOS. This code example showcases the feature usage in C#.


using GroupDocs.Comparison;

string sourcePath = @"source.docx";
string targetPath = @"target.docx";
string resultPath = @"result.docx";

using (Comparer comparer = new Comparer(sourcePath))
{
      // Add target document
      comparer.Add(targetPath);
      
      // Set sensitivity of comparison using CompareOptions
      CompareOptions compareOptions = new CompareOptions();
      compareOptions.SensitivityOfComparison = 50;
      compareOptions.SensitivityOfComparisonForTables = 90;

      // Compare and save comparison result
      comparer.Compare(resultPath, compareOptions);
}

Source*

Power-Up Document Comparisons

The problems related to document comparison in certain scenarios with unexpected behavior have been addressed. This update allows the users to incorporate precise document comparison features into their platform-independent C# and VB.NET solutions.

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Comparison for .NET 24.7 Release Notes.

 English