wordtopdf.dll for .net ver 3.5
is WordToPdf.dll for .net 3.5 available?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rahul PrasadPosted May 13, 2015, 5:13 AM
Code snippet:
public static void ConvertToPdf(string fileName, string outputFileName)
{
Document doc = new Document(fileName);
doc.SaveToFile(outputFileName, FileFormat.PDF);
}
Joginder BangerPosted Mar 15, 2015, 3:35 PM
I think it's available in 3.5 version. Add only this microsoft.office.interop.word in your project after then a three or four line code available. You can easily convert word to pdf. you can try on google or may be find out codeplex.com website.