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.
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.
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.
GroupDocs.Comparison.Document
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*
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.