We’re happy to announce the release of GroupDocs.Comparison for .NET 26.2, available as of February 2026.
GroupDocs.Comparison version 26.2 includes multiple improvements to strengthen performance and stability, including enhancements for Word document comparison and a new dedicated options class.
Fixes and enhancements
- [Enhancement] Significantly improved comparison performance for large-size Word documents. (COMPARISONNET-4684)
- [Enhancement] Ability to specify ChangeType directly in the GetChanges method. (COMPARISONNET-4548)
- [Bug] Fixed NullReference exception when comparing Word documents with WordTrackChanges = true. (COMPARISONNET-4688)
- [Enhancement] New WordCompareOptions class for Word document comparison. (COMPARISONNET-4685)
- [Bug] Document comparison crashes when Word document contains multi-line field code formula. (COMPARISONNET-4295)
Major Features
Ability to specify ChangeType directly in the GetChanges method
You can now specify ChangeType directly when calling the GetChanges method to filter which types of changes are returned.
New WordCompareOptions class for Word document comparison
A new WordCompareOptions class has been created specifically for Word document comparison, allowing you to configure Word-specific compare options in a dedicated, type-safe manner.
using (var comparer = new Comparer("source.docx"))
{
comparer.Add("target.docx");
var options = new WordCompareOptions()
{
DetectStyleChanges = true,
DisplayMode = WordCompareOptions.ComparisonDisplayMode.Revisions
};
comparer.Compare("result.docx", options);
}
Public API changes
CompareOptions has been refactored to separate document-type-specific settings. Word-specific options are now available in the dedicated WordCompareOptions class (DisplayMode, MarkLineBreaks, CompareBookmarks, and others). These properties remain on CompareOptions but are marked as obsolete and will be removed in a future release. Existing code remains backward compatible.
How to get the update
You can get the latest version from NuGet or download it directly from the GroupDocs website.
NuGet
GroupDocs.Comparison for .NET 26.2
Direct download
Download assemblies for both .NET and .NET Framework from the GroupDocs.Comparison for .NET 26.2 page.