Browse our Products Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
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.
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#.
CompareOptions.SensitivityOfComparisonForTables
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*
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.