C#实现Word转为PDF的方法
这里主要提供一种将word文档转成PDF文档的实现; 具体实现看c#代码:要引入Microsoft.Office.Interop.Word;版本12.0.0.0 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Runtime.InteropServices; using Microsoft.Office.Interop.Word; //Office 命名空间 namespace OfficeToPdf {
用户评论