1.引用iTextSharp,用于拆分和合并pdf文件 using iTextSharp.text; using iTextSharp.text.pdf; 2.合并pdf //outMergeFile是pdf文件合并后的输出路径 //lstFile里存放要进行合并的pdf文件的路径 public static void mergePDFFiles(string outMergeFile, List<string> lstFile) { if (!Sql.IsEmptyString(outMer
using iTextSharp.text; using iTextSharp.text.pdf; using iTextSharp.text.pdf.parser; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespa