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.2(DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 184.98MB
  • Date Added:
  • 29/2/2024

Description

This ZIP file contains only the GroupDocs.Comparison for .NET 24.2 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

Are you looking for a reliable document comparison solution? GroupDocs.Comparison for .NET 24.2 is here to offer you everything you were looking for. With the newly released DLLs-only package, you can experience convenient and flexible integration across multiple platforms and elevate your cross-platform .NET applications with the newly introduced feature enhancements.

Access and Control Comparison Results

Developers can now access the resultant comparison document with the new GroupDocs.Comparison.Document object. This update enables controlling comparison results and offers streamlined integration with Aspose libraries for further document manipulation. The following code example highlights the feature usage.


using Aspose.Words;
using GroupDocs.Comparison;

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

using (Comparer comparer = new Comparer(sourcePath))
{
      // Add target document and save comparison result to Comparison.Document object
      comparer.Add(targetPath);
      GroupDocs.Comparison.Document resultDocument = comparer.Compare(resultPath);

      // Create a new Aspose Document object of corresponding format.
      Aspose.Words.Document asposeDocument = new Aspose.Words.Document(resultDocument.Stream);

      // Access the Document's builder to add content.
      DocumentBuilder builder = new DocumentBuilder(asposeDocument);

      // Add some text to the document.
      builder.Writeln("Hello, World!");
      builder.Write("This is an example of using Aspose.Words.");

      // Save the document to a file.
      asposeDocument.Save("output.docx");
}

Source*

High-end Word Document Comparisons

We have resolved the problems with comparing Word documents having specific bullet list styling. This fix ascertains an optimized comparison experience for .NET developers on the platform of their choice.

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

 English