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.
We are excited to announce the release of GroupDocs.Comparison for .NET 24.7 (MSI)! This update brings a new feature for enhanced table comparison control and resolves identified issues to ensure a smoother user experience.
The latest .NET document comparison API introduces the CompareOptions.SensitivityOfComparisonForTables property, which enables developers to tailor comparison strictness specifically for tables within documents and achieve precise comparison results. 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*
We have resolved the issues related to document comparison in certain scenarios that behaved unexpectedly. This update allows the users to integrate accurate document comparison functionality into their C# and VB.NET applications.
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.