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.

Download C# DLL for Document Merging via .NET API

GroupDocs.Merger for .NET is a full-featured, native API to manipulate and merge documents within any .NET application. It permits developers to develop applications with the ability to merge multiple documents into a single one. It allows to split, reorder, remove or combine pages to a document of supported format. API also manages security features with password protection capability to remove or set passwords to any supported document.


Get Started

Open NuGet package manager, search for GroupDocs.Merger and install. You may also use the following command from the Package Manager Console.

Install

To install please execute Install-Package GroupDocs.Merger from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Merger assembly in your project.

PM>

Update

If you already have GroupDocs.Merger for .Net and want to upgrade it, please execute Update-Package GroupDocs.Merger to get the latest version.

PM>

Document Merger .NET API

Version NuGet .NET


Docs Reference Examples Blog Releases Support License


This GroupDocs.Merger for .NET on-premise API lets your apps perform merging, splitting, swapping and lots of other operations on document pages of various file formats.

Content


Top

Document Merging and Splitting

Merge Multiple File Types

Effortlessly merge files across different formats like PDF, DOCX, XLSX, PPTX, and EPUB into one cohesive document, simplifying document management.

Custom Document Splitting

Easily split documents into multiple files based on specified page numbers, start/end ranges, or even/odd page settings, allowing for tailored document management.

Merge DOCX Files

Allows developers to merge Word documents such as DOCX without third-party software, preserving all content.

Top

Document Security and Protection

Robust Password Management

Secure your documents by adding, removing, or updating passwords seamlessly, ensuring sensitive data remains protected.

Remove Password Protection

Effortlessly remove passwords from protected documents, simplifying access for authorized users while maintaining document integrity.

Comprehensive Document Security

Manage and protect your documents with features designed to add, update, or remove security settings, ensuring that your content remains secure at all times.

Top

Page-Level Manipulation

Precise Page Rotation

Rotate pages within your document to 90, 180, or 270 degrees, ensuring that every page is presented exactly as needed.

Page Removal and Extraction

Remove unwanted pages or extract specific pages from your document, streamlining content to meet specific needs and reducing unnecessary bulk.

Top

Cross-Format Merging and Embedding

Merge documents to PDF

Combine and merge documents to PDF even different types of files such as DOCX, PPTX, or XLSX, etc.

Cross-format merging to DOC/DOCX

Merge documents to DOC/DOCX, i.e. multiple documents of various file types such as PDF, DOC or DOCX into a single DOC or DOCX document.

Merge images to PDF

GroupDocs.Merger for .NET allows developers to merge images to PDF or combine multiple image documents in the preferred order and save them as a single PDF file.

OLE Document Embedding

Embed documents within other documents (e.g., Word, Excel, PDF into PowerPoint or Diagram) using OLE technology, enhancing presentations and diagrams with rich, integrated content.

Top

Platform Independence and Performance

Cross-Platform Flexibility

Deploy GroupDocs.Merger across multiple operating systems (Windows, Linux, Mac OS) and develop applications in .NET environments like ASP.NET, WCF, and WinForms, ensuring broad compatibility.

Optimized for High Performance

Handle thousands of files efficiently with a solution designed for high performance, tested to ensure minimal resource usage and maximum processing speed.

No External Dependencies

Operate independently of third-party software like Microsoft Office, reducing costs and simplifying deployment with a fully self-contained document processing solution.

GroupDocs.Merger for .NET does not require any external software or third-party tool to be installed. GroupDocs.Merger for .NET supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed. The other details are as follows:

External DependenciesGroupDocs.Merger for .NET does not require any external software or third-party tool to be installed.
Operating System SupportGroupDocs.Merger for .NET supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed.
Microsoft Windows®Microsoft Windows Desktop (x86, x64) (XP & up), Microsoft Windows Server (x86, x64) (2000 & up), Windows Azure
Mac OSMac OS X
LinuxLinux (Ubuntu, OpenSUSE, CentOS and others)
Development EnvironmentsMicrosoft Visual Studio (2010 & up), Xamarin.Android, Xamarin.IOS, Xamarin.Mac, MonoDevelop 2.4 and later.
Supported FrameworksGroupDocs.Merger for .NET supports .NET and Mono frameworks.

Top

Integration and Support Resources

Extensive Code Samples and Documentation

Access comprehensive code examples and detailed documentation on GitHub, allowing developers to quickly implement and customize features.

Unlimited Technical Support

Benefit from unlimited technical support, with both free and paid options available, ensuring that any issues are resolved quickly and efficiently.

Free Online Tools and Apps

Try out GroupDocs.Merger features with free online apps for document merging, allowing potential users to experience the power and ease of the tool before integrating it into their workflow.

Top

Supported Document Types

GroupDocs.Merger for .NET supports the following file formats: Supported Document Types

Top

Get Started

Are you ready to give GroupDocs.Merger for .NET a try? Simply execute Install-Package GroupDocs.Merger from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Merger assembly in your project. If you already have GroupDocs.Merger for .NET and want to upgrade it, please execute Update-Package GroupDocs.Merger to get the latest version.

Please check the GitHub Repository for other common usage scenarios.

Top

Merging DOCX documents

This example demonstrates how to merge two DOCX documents into a single file using GroupDocs.Merger.

string filePath1 = @"c:\sample1.docx";
string filePath2 = @"c:\sample2.docx";
string filePathOut = @"c:\output\merged.docx";

using (Merger merger = new Merger(filePath1))
{
    merger.Join(filePath2);
    merger.Save(filePathOut);
}

Top

Cross-merging images to PDF

GroupDocs.Merger allows developers to combine multiple image documents in the preferred order and save them as a single PDF file.

// Load the source image file
using (Merger merger = new Merger(@"c:\sample1.jpeg", new LoadOptions(FileType.PDF)))
{
    // Add another image file to merge
    merger.Join(@"c:\sample2.png");
    // Add next image file to merge
    merger.Join(@"c:\sample3.bmp");
    // Merge image files and save PDF result
    merger.Save(@"c:\merged.pdf");
}

Top

Splitting DOCX document

This code shows how to split the document to several one-page documents (by start/end page numbers).

string filePath = @"c:\sample.docx";
string filePathOut = @"c:\output\document_{0}.{1}";

SplitOptions splitOptions = new SplitOptions(filePathOut, 3, 7);

using (Merger merger = new Merger(filePath))
{
   merger.Split(splitOptions);
}

Top

Swapping pages in a PPTX document

This code snippet shows how to swap two pages within a PPTX document, demonstrating the flexibility of GroupDocs.Merger in managing page layouts.

string filePath = @"c:\sample.pptx";
string filePathOut = @"c:\output\result.pptx";

int pageNumber1 = 3;
int pageNumber2 = 6;
SwapOptions swapOptions = new SwapOptions(pageNumber2, pageNumber1);

using (Merger merger = new Merger(filePath))
{
    merger.SwapPages(swapOptions);
    merger.Save(filePathOut);
}

Top

Cross-merging various document streams to PDF

There may also be situations when it is necessary to combine different types of streams into PDF. In this case, you can use the example below:

string filePath1 = "c:/sample1.docx";
string filePath2 = "c:/sample2.pptx";

MemoryStream memoryStream1 = new MemoryStream();
using (FileStream fileStream1 = File.OpenRead(filePath1))
{
    fileStream1.CopyTo(memoryStream1);
}

MemoryStream memoryStream2 = new MemoryStream();
using (FileStream fileStream2 = File.OpenRead(filePath2))
{
    fileStream2.CopyTo(memoryStream2);
}

// Init Load options with defined FileTypes
LoadOptions loadOptions = new LoadOptions(FileType.DOCX, FileType.PDF);

// Load the source DOCX stream as PDF
using (Merger merger = new Merger(memoryStream1, loadOptions))
{
    // Define join options with PPTX file type
    JoinOptions joinOptions = new JoinOptions(FileType.PPTX);
    // Add another PPTX stream to merge
    merger.Join(memoryStream2, joinOptions);
    // Merge document streams and save PDF result
    merger.Save(@"c:\merged.pdf");
}

Docs Reference Examples Blog Releases Support License



Direct Download

Icons

GroupDocs.Merger for .NET 26.7

This contains the MSI installer of GroupDocs.Merger for .NET

Added: 1/8/2026 Downloads:

Download

File Size: 366.75MB

Icons

GroupDocs.Merger for .NET 26.7 (DLLs only)

This ZIP package contains GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 1/8/2026 Downloads:

Download

File Size: 649.18MB

Icons

GroupDocs.Merger for .NET 26.4

This contains the MSI installer of GroupDocs.Merger for .NET

Added: 30/4/2026 Downloads:

Download

File Size: 366.48MB

Icons

GroupDocs.Merger for .NET 26.4 (DLLs only)

This ZIP package contains GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 30/4/2026 Downloads:

Download

File Size: 367.39MB

Icons

GroupDocs.Merger for .NET 25.11 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 25.11 Cross-Platform

Added: 28/11/2025 Downloads:

Download

File Size: 168.69MB

Icons

GroupDocs.Merger for .NET 25.11 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 28/11/2025 Downloads:

Download

File Size: 92.6MB

Icons

GroupDocs.Merger for .NET 25.11

This contains the MSI installer of GroupDocs.Merger for .NET 25.11

Added: 28/11/2025 Downloads:

Download

File Size: 177.64MB

Icons

GroupDocs.Merger for .NET 25.11 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 28/11/2025 Downloads:

Download

File Size: 178.77MB

Icons

GroupDocs.Merger for .NET 25.9 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 25.9 Cross-Platform

Added: 4/9/2025 Downloads:

Download

File Size: 167.21MB

Icons

GroupDocs.Merger for .NET 25.9 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 4/9/2025 Downloads:

Download

File Size: 166.51MB

Icons

GroupDocs.Merger for .NET 25.9

This contains the MSI installer of GroupDocs.Merger for .NET 25.9

Added: 4/9/2025 Downloads:

Download

File Size: 175.31MB

Icons

GroupDocs.Merger for .NET 25.9 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 4/9/2025 Downloads:

Download

File Size: 173.08MB

Icons

GroupDocs.Merger for .NET 25.7 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 25.7 Cross-Platform

Added: 29/7/2025 Downloads:

Download

File Size: 160.65MB

Icons

GroupDocs.Merger for .NET 25.7 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 29/7/2025 Downloads:

Download

File Size: 159.96MB

Icons

GroupDocs.Merger for .NET 25.7

This contains the MSI installer of GroupDocs.Merger for .NET 25.7

Added: 29/7/2025 Downloads:

Download

File Size: 161.8MB

Icons

GroupDocs.Merger for .NET 25.7 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 29/7/2025 Downloads:

Download

File Size: 159.59MB

Icons

GroupDocs.Merger for .NET 25.6 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 25.6 Cross-Platform

Added: 3/6/2025 Downloads:

Download

File Size: 160.64MB

Icons

GroupDocs.Merger for .NET 25.6 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 3/6/2025 Downloads:

Download

File Size: 159.95MB

Icons

GroupDocs.Merger for .NET 25.6

This contains the MSI installer of GroupDocs.Merger for .NET 25.6

Added: 3/6/2025 Downloads:

Download

File Size: 161.78MB

Icons

GroupDocs.Merger for .NET 25.6 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 3/6/2025 Downloads:

Download

File Size: 159.57MB

Icons

GroupDocs.Merger for .NET 25.5 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 25.5 Cross-Platform

Added: 14/5/2025 Downloads:

Download

File Size: 160.64MB

Icons

GroupDocs.Merger for .NET 25.5 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 14/5/2025 Downloads:

Download

File Size: 159.95MB

Icons

GroupDocs.Merger for .NET 25.5

This contains the MSI installer of GroupDocs.Merger for .NET 25.5

Added: 14/5/2025 Downloads:

Download

File Size: 161.78MB

Icons

GroupDocs.Merger for .NET 25.5 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 14/5/2025 Downloads:

Download

File Size: 159.57MB

Icons

GroupDocs.Merger for .NET 25.4 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 25.4 Cross-Platform

Added: 9/4/2025 Downloads:

Download

File Size: 160.64MB

Icons

GroupDocs.Merger for .NET 25.4 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 9/4/2025 Downloads:

Download

File Size: 159.96MB

Icons

GroupDocs.Merger for .NET 25.4

This contains the MSI installer of GroupDocs.Merger for .NET 25.4

Added: 9/4/2025 Downloads:

Download

File Size: 161.78MB

Icons

GroupDocs.Merger for .NET 25.4 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 9/4/2025 Downloads:

Download

File Size: 159.57MB

Icons

GroupDocs.Merger for .NET 25.3 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 25.3 Cross-Platform

Added: 19/3/2025 Downloads:

Download

File Size: 160.64MB

Icons

GroupDocs.Merger for .NET 25.3 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 19/3/2025 Downloads:

Download

File Size: 159.96MB

Icons

GroupDocs.Merger for .NET 25.3

This contains the MSI installer of GroupDocs.Merger for .NET 25.3

Added: 19/3/2025 Downloads:

Download

File Size: 161.78MB

Icons

GroupDocs.Merger for .NET 25.3 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 19/3/2025 Downloads:

Download

File Size: 159.56MB

Icons

GroupDocs.Merger for .NET 25.2.1 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 25.2.1 Cross-Platform

Added: 6/2/2025 Downloads:

Download

File Size: 160.64MB

Icons

GroupDocs.Merger for .NET 25.2.1 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 6/2/2025 Downloads:

Download

File Size: 159.96MB

Icons

GroupDocs.Merger for .NET 25.2.1

This contains the MSI installer of GroupDocs.Merger for .NET 25.2.1

Added: 6/2/2025 Downloads:

Download

File Size: 161.78MB

Icons

GroupDocs.Merger for .NET 25.2.1 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 6/2/2025 Downloads:

Download

File Size: 159.56MB

Icons

GroupDocs.Merger for .NET 25.2 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 25.2 Cross-Platform

Added: 5/2/2025 Downloads:

Download

File Size: 157.48MB

Icons

GroupDocs.Merger for .NET 25.2 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 5/2/2025 Downloads:

Download

File Size: 156.79MB

Icons

GroupDocs.Merger for .NET 25.2

This contains the MSI installer of GroupDocs.Merger for .NET 25.2

Added: 5/2/2025 Downloads:

Download

File Size: 155.45MB

Icons

GroupDocs.Merger for .NET 25.2 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 5/2/2025 Downloads:

Download

File Size: 153.25MB

Icons

GroupDocs.Merger for .NET 24.12 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 24.12 Cross-Platform

Added: 5/12/2024 Downloads:

Download

File Size: 157.47MB

Icons

GroupDocs.Merger for .NET 24.12 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 5/12/2024 Downloads:

Download

File Size: 156.78MB

Icons

GroupDocs.Merger for .NET 24.12

This contains the MSI installer of GroupDocs.Merger for .NET 24.12

Added: 5/12/2024 Downloads:

Download

File Size: 155.43MB

Icons

GroupDocs.Merger for .NET 24.12 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 5/12/2024 Downloads:

Download

File Size: 153.23MB

Icons

GroupDocs.Merger for .NET 24.11 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 24.11 Cross-Platform

Added: 19/11/2024 Downloads:

Download

File Size: 157.46MB

Icons

GroupDocs.Merger for .NET 24.11 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 19/11/2024 Downloads:

Download

File Size: 156.78MB

Icons

GroupDocs.Merger for .NET 24.11

This contains the MSI installer of GroupDocs.Merger for .NET 24.11

Added: 19/11/2024 Downloads:

Download

File Size: 155.43MB

Icons

GroupDocs.Merger for .NET 24.11 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 19/11/2024 Downloads:

Download

File Size: 153.23MB

Icons

GroupDocs.Merger for .NET 24.10 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 24.10 Cross-Platform

Added: 15/10/2024 Downloads:

Download

File Size: 157.46MB

Icons

GroupDocs.Merger for .NET 24.10 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 15/10/2024 Downloads:

Download

File Size: 156.78MB

Icons

GroupDocs.Merger for .NET 24.10

This contains the MSI installer of GroupDocs.Merger for .NET 24.10

Added: 15/10/2024 Downloads:

Download

File Size: 155.43MB

Icons

GroupDocs.Merger for .NET 24.10 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 15/10/2024 Downloads:

Download

File Size: 153.23MB

Icons

GroupDocs.Merger for .NET 24.9 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 24.9 Cross-Platform

Added: 17/9/2024 Downloads:

Download

File Size: 157.37MB

Icons

GroupDocs.Merger for .NET 24.9 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 17/9/2024 Downloads:

Download

File Size: 156.69MB

Icons

GroupDocs.Merger for .NET 24.9

This contains the MSI installer of GroupDocs.Merger for .NET 24.9

Added: 17/9/2024 Downloads:

Download

File Size: 155.24MB

Icons

GroupDocs.Merger for .NET 24.9 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 17/9/2024 Downloads:

Download

File Size: 153.03MB

Icons

GroupDocs.Merger for .NET 24.8 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 29/8/2024 Downloads:

Download

File Size: 156.69MB

Icons

GroupDocs.Merger for .NET 24.8

This contains the MSI installer of GroupDocs.Merger for .NET 24.8

Added: 29/8/2024 Downloads:

Download

File Size: 155.24MB

Icons

GroupDocs.Merger for .NET 24.8 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 29/8/2024 Downloads:

Download

File Size: 153.03MB

Icons

GroupDocs.Merger for .NET 24.7 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 24.7 Cross-Platform

Added: 16/7/2024 Downloads:

Download

File Size: 157.34MB

Icons

GroupDocs.Merger for .NET 24.7 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 16/7/2024 Downloads:

Download

File Size: 156.68MB

Icons

GroupDocs.Merger for .NET 24.7

This contains the MSI installer of GroupDocs.Merger for .NET 24.7

Added: 16/7/2024 Downloads:

Download

File Size: 155.21MB

Icons

GroupDocs.Merger for .NET 24.7 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 16/7/2024 Downloads:

Download

File Size: 153.03MB

Icons

GroupDocs.Merger for .NET 24.6.1 Cross-Platform

This contains the MSI installer of GroupDocs.Merger for .NET 24.6.1 Cross-Platform

Added: 27/6/2024 Downloads:

Download

File Size: 157.34MB

Icons

GroupDocs.Merger for .NET 24.6.1 Cross-Platform (DLLs only)

This ZIP package contains cross-platform version of GroupDocs.Merger. This package can be used on Windows, Linux and macOS. Please check readme.txt file for list of dependencies that should be installed manually.

Added: 27/6/2024 Downloads:

Download

File Size: 156.68MB

Icons

GroupDocs.Merger for .NET 24.6.1

This contains the MSI installer of GroupDocs.Merger for .NET 24.6.1

Added: 27/6/2024 Downloads:

Download

File Size: 155.02MB

Icons

GroupDocs.Merger for .NET 24.6.1 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 27/6/2024 Downloads:

Download

File Size: 152.84MB

Icons

GroupDocs.Merger for .NET 24.6

This contains the MSI installer of GroupDocs.Merger for .NET 24.6

Added: 4/6/2024 Downloads:

Download

File Size: 235.69MB

Icons

GroupDocs.Merger for .NET 24.6 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 4/6/2024 Downloads:

Download

File Size: 236.92MB

Icons

GroupDocs.Merger for .NET 24.4

This contains the MSI installer of GroupDocs.Merger for .NET 24.4

Added: 18/4/2024 Downloads:

Download

File Size: 208.71MB

Icons

GroupDocs.Merger for .NET 24.4 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 18/4/2024 Downloads:

Download

File Size: 209.97MB

Icons

GroupDocs.Merger for .NET 24.3

This contains the MSI installer of GroupDocs.Merger for .NET 24.3

Added: 26/3/2024 Downloads:

Download

File Size: 208.71MB

Icons

GroupDocs.Merger for .NET 24.3 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 26/3/2024 Downloads:

Download

File Size: 209.97MB

Icons

GroupDocs.Merger for .NET 24.2

This contains the MSI installer of GroupDocs.Merger for .NET 24.2.

Added: 26/2/2024 Downloads:

Download

File Size: 208.71MB

Icons

GroupDocs.Merger for .NET 24.2 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 26/2/2024 Downloads:

Download

File Size: 209.97MB

Icons

GroupDocs.Merger for .NET 24.1

This contains the MSI installer of GroupDocs.Merger for .NET 24.1

Added: 23/1/2024 Downloads:

Download

File Size: 208.71MB

Icons

GroupDocs.Merger for .NET 24.1 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 23/1/2024 Downloads:

Download

File Size: 209.97MB

Icons

GroupDocs.Merger for .NET 23.12

This contains the MSI installer of GroupDocs.Merger for .NET 23.12

Added: 19/12/2023 Downloads:

Download

File Size: 208.71MB

Icons

GroupDocs.Merger for .NET 23.12 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 19/12/2023 Downloads:

Download

File Size: 209.97MB

Icons

GroupDocs.Merger for .NET 23.11

This contains the MSI installer of GroupDocs.Merger for .NET 23.11

Added: 22/11/2023 Downloads:

Download

File Size: 208.71MB

Icons

GroupDocs.Merger for .NET 23.11 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 22/11/2023 Downloads:

Download

File Size: 209.96MB

Icons

GroupDocs.Merger for .NET 23.10

This contains the MSI installer of GroupDocs.Merger for .NET 23.10

Added: 16/10/2023 Downloads:

Download

File Size: 208.23MB

Icons

GroupDocs.Merger for .NET 23.10 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 16/10/2023 Downloads:

Download

File Size: 209.44MB

Icons

GroupDocs.Merger for .NET 23.9

This contains the MSI installer of GroupDocs.Merger for .NET 23.9

Added: 19/9/2023 Downloads:

Download

File Size: 207.82MB

Icons

GroupDocs.Merger for .NET 23.9 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 19/9/2023 Downloads:

Download

File Size: 209.04MB

Icons

GroupDocs.Merger for .NET 23.8

This contains the MSI installer of GroupDocs.Merger for .NET 23.8

Added: 17/8/2023 Downloads:

Download

File Size: 207.82MB

Icons

GroupDocs.Merger for .NET 23.8 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 17/8/2023 Downloads:

Download

File Size: 209.03MB

Icons

GroupDocs.Merger for .NET 23.5

This contains the MSI installer of GroupDocs.Merger for .NET 23.5

Added: 30/5/2023 Downloads:

Download

File Size: 176.93MB

Icons

GroupDocs.Merger for .NET 23.5 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 30/5/2023 Downloads:

Download

File Size: 178.19MB

Icons

GroupDocs.Merger for .NET 23.4

This contains the MSI installer of GroupDocs.Merger for .NET 23.4

Added: 26/4/2023 Downloads:

Download

File Size: 176.93MB

Icons

GroupDocs.Merger for .NET 23.4 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 26/4/2023 Downloads:

Download

File Size: 178.19MB

Icons

GroupDocs.Merger for .NET 23.3.1

This contains the MSI installer of GroupDocs.Merger for .NET 23.3.1

Added: 16/3/2023 Downloads:

Download

File Size: 176.93MB

Icons

GroupDocs.Merger for .NET 23.3.1 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 16/3/2023 Downloads:

Download

File Size: 178.19MB

Icons

GroupDocs.Merger for .NET 23.3

This contains the MSI installer of GroupDocs.Merger for .NET 23.3

Added: 15/3/2023 Downloads:

Download

File Size: 173.36MB

Icons

GroupDocs.Merger for .NET 23.3 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 15/3/2023 Downloads:

Download

File Size: 174.61MB

Icons

GroupDocs.Merger for .NET 22.12

This contains the MSI installer of GroupDocs.Merger for .NET 22.12

Added: 19/12/2022 Downloads:

Download

File Size: 173.31MB

Icons

GroupDocs.Merger for .NET 22.12 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 19/12/2022 Downloads:

Download

File Size: 174.57MB

Icons

GroupDocs.Merger for .NET 22.10

This contains the MSI installer of GroupDocs.Merger for .NET 22.10

Added: 24/10/2022 Downloads:

Download

File Size: 173.31MB

Icons

GroupDocs.Merger for .NET 22.10 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET 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.Merger for .NET without the MSI installer. This ZIP download does not contain the demo projects.

Added: 24/10/2022 Downloads:

Download

File Size: 174.07MB

Icons

GroupDocs.Merger for .NET 22.7

This contains the MSI installer of GroupDocs.Merger for .NET 22.7

Added: 7/27/2022 Downloads:

Download

File Size: 173.3 MB

Icons

GroupDocs.Merger for .NET 22.7 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 7/27/2022 Downloads:

Download

File Size: 174.0 MB

Icons

GroupDocs.Merger for .NET 22.5

This contains the MSI installer of GroupDocs.Merger for .NET 22.5

Added: 5/18/2022 Downloads:

Download

File Size: 104.3 MB

Icons

GroupDocs.Merger for .NET 22.5 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 5/18/2022 Downloads:

Download

File Size: 105.2 MB

Icons

GroupDocs.Merger for .NET 22.4

This contains the MSI installer of GroupDocs.Merger for .NET 22.4

Added: 4/25/2022 Downloads:

Download

File Size: 104.3 MB

Icons

GroupDocs.Merger for .NET 22.4 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 4/25/2022 Downloads:

Download

File Size: 105.2 MB

Icons

GroupDocs.Merger for .NET 22.1

This contains the MSI installer of GroupDocs.Merger for .NET 22.1

Added: 1/6/2022 Downloads:

Download

File Size: 104.3 MB

Icons

GroupDocs.Merger for .NET 22.1 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 1/6/2022 Downloads:

Download

File Size: 105.2 MB

Icons

GroupDocs.Merger for .NET 21.8

This contains the MSI installer of GroupDocs.Merger for .NET 21.8

Added: 8/19/2021 Downloads:

Download

File Size: 104.3 MB

Icons

GroupDocs.Merger for .NET 21.8 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 8/19/2021 Downloads:

Download

File Size: 105.2 MB

Icons

GroupDocs.Merger for .NET 21.7

This contains the MSI installer of GroupDocs.Merger for .NET 21.7

Added: 7/27/2021 Downloads:

Download

File Size: 104.3 MB

Icons

GroupDocs.Merger for .NET 21.7 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 7/27/2021 Downloads:

Download

File Size: 105.2 MB

Icons

GroupDocs.Merger for .NET 21.6

This contains the MSI installer of GroupDocs.Merger for .NET 21.6

Added: 6/23/2021 Downloads:

Download

File Size: 104.3 MB

Icons

GroupDocs.Merger for .NET 21.6 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 6/23/2021 Downloads:

Download

File Size: 105.2 MB

Icons

GroupDocs.Merger for .NET 21.5

This contains the MSI installer of GroupDocs.Merger for .NET 21.5

Added: 5/26/2021 Downloads:

Download

File Size: 104.3 MB

Icons

GroupDocs.Merger for .NET 21.5 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 5/26/2021 Downloads:

Download

File Size: 105.2 MB

Icons

GroupDocs.Merger for .NET 21.3

This contains the MSI installer of GroupDocs.Merger for .NET 21.3

Added: 3/29/2021 Downloads:

Download

File Size: 104.1 MB

Icons

GroupDocs.Merger for .NET 21.3 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 3/29/2021 Downloads:

Download

File Size: 104.9 MB

Icons

GroupDocs.Merger for .NET 21.2

This contains the MSI installer of GroupDocs.Merger for .NET 21.2

Added: 2/25/2021 Downloads:

Download

File Size: 103.8 MB

Icons

GroupDocs.Merger for .NET 21.2 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 2/25/2021 Downloads:

Download

File Size: 104.4 MB

Icons

GroupDocs.Merger for .NET 20.12

This contains the MSI installer of GroupDocs.Merger for .NET 20.12

Added: 12/22/2020 Downloads:

Download

File Size: 104.0 MB

Icons

GroupDocs.Merger for .NET 20.12 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 12/22/2020 Downloads:

Download

File Size: 104.7 MB

Icons

GroupDocs.Merger for .NET 20.11

This contains the MSI installer of GroupDocs.Merger for .NET 20.11

Added: 11/25/2020 Downloads:

Download

File Size: 102.8 MB

Icons

GroupDocs.Merger for .NET 20.11 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 11/25/2020 Downloads:

Download

File Size: 103.4 MB

Icons

GroupDocs.Merger for .NET 20.10

This contains the MSI installer of GroupDocs.Merger for .NET 20.10

Added: 10/28/2020 Downloads:

Download

File Size: 102.8 MB

Icons

GroupDocs.Merger for .NET 20.10 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 10/28/2020 Downloads:

Download

File Size: 103.4 MB

Icons

GroupDocs.Merger for .NET 20.9

This contains the MSI installer of GroupDocs.Merger for .NET 20.9

Added: 9/16/2020 Downloads:

Download

File Size: 102.8 MB

Icons

GroupDocs.Merger for .NET 20.9 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 9/16/2020 Downloads:

Download

File Size: 103.4 MB

Icons

GroupDocs.Merger for .NET 20.8

This contains the MSI installer of GroupDocs.Merger for .NET 20.8

Added: 8/21/2020 Downloads:

Download

File Size: 102.8 MB

Icons

GroupDocs.Merger for .NET 20.8 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 8/21/2020 Downloads:

Download

File Size: 103.4 MB

Icons

GroupDocs.Merger for .NET 20.7

This contains the MSI installer of GroupDocs.Merger for .NET 20.7

Added: 7/28/2020 Downloads:

Download

File Size: 102.7 MB

Icons

GroupDocs.Merger for .NET 20.7 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 7/28/2020 Downloads:

Download

File Size: 103.3 MB

Icons

GroupDocs.Merger for .NET 20.5

This contains the MSI installer of GroupDocs.Merger for .NET 20.5

Added: 5/28/2020 Downloads:

Download

File Size: 99.1 MB

Icons

GroupDocs.Merger for .NET 20.5 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 5/28/2020 Downloads:

Download

File Size: 99.8 MB

Icons

GroupDocs.Merger for .NET 20.4

This contains the MSI installer of GroupDocs.Merger for .NET 20.4

Added: 4/22/2020 Downloads:

Download

File Size: 99.1 MB

Icons

GroupDocs.Merger for .NET 20.4 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 4/22/2020 Downloads:

Download

File Size: 99.8 MB

Icons

GroupDocs.Merger for .NET 20.2

This contains the MSI installer of GroupDocs.Merger for .NET 20.2

Added: 2/26/2020 Downloads:

Download

File Size: 99.1 MB

Icons

GroupDocs.Merger for .NET 20.2 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 2/26/2020 Downloads:

Download

File Size: 99.7 MB

Icons

GroupDocs.Merger for .NET 20.1

This contains the MSI installer of GroupDocs.Merger for .NET 20.1

Added: 1/28/2020 Downloads:

Download

File Size: 98.7 MB

Icons

GroupDocs.Merger for .NET 20.1 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 1/28/2020 Downloads:

Download

File Size: 99.3 MB

Icons

GroupDocs.Merger for .NET 19.12

This contains the MSI installer of GroupDocs.Merger for .NET 19.12

Added: 12/23/2019 Downloads:

Download

File Size: 98.5 MB

Icons

GroupDocs.Merger for .NET 19.12 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 12/23/2019 Downloads:

Download

File Size: 99.2 MB

Icons

GroupDocs.Merger for .NET 19.11

This contains the MSI installer of GroupDocs.Merger for .NET 19.11

Added: 11/13/2019 Downloads:

Download

File Size: 98.3 MB

Icons

GroupDocs.Merger for .NET 19.11 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 11/13/2019 Downloads:

Download

File Size: 98.9 MB

Icons

GroupDocs.Merger for .NET 19.10

This contains the MSI installer of GroupDocs.Merger for .NET 19.10

Added: 10/30/2019 Downloads:

Download

File Size: 98.2 MB

Icons

GroupDocs.Merger for .NET 19.10 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 10/30/2019 Downloads:

Download

File Size: 98.9 MB

Icons

GroupDocs.Merger for .NET 19.9

This contains the MSI installer of GroupDocs.Merger for .NET 19.9

Added: 9/30/2019 Downloads:

Download

File Size: 49.1 MB

Icons

GroupDocs.Merger for .NET 19.9 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 9/30/2019 Downloads:

Download

File Size: 49.8 MB

Icons

GroupDocs.Merger for .NET 19.7

This contains the MSI installer of GroupDocs.Merger for .NET 19.7

Added: 7/8/2019 Downloads:

Download

File Size: 49.1 MB

Icons

GroupDocs.Merger for .NET 19.7 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 7/8/2019 Downloads:

Download

File Size: 49.7 MB

Icons

GroupDocs.Merger for .NET 19.6

This contains the MSI installer of GroupDocs.Merger for .NET 19.6

Added: 6/7/2019 Downloads:

Download

File Size: 45.4 MB

Icons

GroupDocs.Merger for .NET 19.6 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 6/7/2019 Downloads:

Download

File Size: 46.0 MB

Icons

GroupDocs.Merger for .NET 19.5

This contains the MSI installer of GroupDocs.Merger for .NET 19.5

Added: 5/24/2019 Downloads:

Download

File Size: 45.4 MB

Icons

GroupDocs.Merger for .NET 19.5 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 5/24/2019 Downloads:

Download

File Size: 46.1 MB

Icons

GroupDocs.Merger for .NET 19.4

This contains the MSI installer of GroupDocs.Merger for .NET 19.4

Added: 4/10/2019 Downloads:

Download

File Size: 42.2 MB

Icons

GroupDocs.Merger for .NET 19.4 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 4/10/2019 Downloads:

Download

File Size: 42.9 MB

Icons

GroupDocs.Merger for .NET 19.3

This contains the MSI installer of GroupDocs.Merger for .NET 19.3

Added: 3/22/2019 Downloads:

Download

File Size: 41.9 MB

Icons

GroupDocs.Merger for .NET 19.3 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 3/22/2019 Downloads:

Download

File Size: 42.4 MB

Icons

GroupDocs.Merger for .NET 19.2

This contains the MSI installer of GroupDocs.Merger for .NET 19.2

Added: 2/25/2019 Downloads:

Download

File Size: 41.8 MB

Icons

GroupDocs.Merger for .NET 19.2 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 2/25/2019 Downloads:

Download

File Size: 42.4 MB

Icons

GroupDocs.Merger for .NET 19.1

This contains the MSI installer of GroupDocs.Merger for .NET 19.1

Added: 1/29/2019 Downloads:

Download

File Size: 41.8 MB

Icons

GroupDocs.Merger for .NET 19.1 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 1/29/2019 Downloads:

Download

File Size: 41.8 MB

Icons

GroupDocs.Merger for .NET 18.11

This contains the MSI installer of GroupDocs.Merger for .NET

Added: 11/21/2018 Downloads:

Download

File Size: 41.4 MB

Icons

GroupDocs.Merger for .NET 18.11 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 11/21/2018 Downloads:

Download

File Size: 42.0 MB

Icons

GroupDocs.Merger for .NET 18.9

This contains the MSI installer of GroupDocs.Merger for .NET

Added: 9/4/2018 Downloads:

Download

File Size: 41.4 MB

Icons

GroupDocs.Merger for .NET 18.9 (DLLs only)

This ZIP file contains only the GroupDocs.Merger for .NET assemblies. The assemb...

Added: 9/4/2018 Downloads:

Download

File Size: 42.0 MB


 English