views:

660

answers:

1

What is the easiest and quickest way to combine multiple pdf docs into a single pdf document, programmatically in C#?

I am not looking for a random list of .net PDF libraries (there are loads on SO already), rather a specific library (and function) which will do what I need quickly and easily...

Thanks!

+4  A: 

Here is an example in C# using iTextSharp (free open source): http://itextsharp.sourceforge.net/examples/Concat.cs

Mitch Wheat
i would recommend iTextSharp too.
David Liddle
cheers mitch, exactly what i needed :)
MalcomTucker