.NET framework does not have any native way to accomplish this, so you'll need a 3rd party dll.How? I need code in c#
var application = new Application();
application.Visible = false;
var document = application.Documents.Open(FileName: "sample.pdf");
document.SaveAs2(FileName: "sample.docx", FileFormat: WdSaveFormat.wdFormatDocumentDefault);
document.Close();
application.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(document);
System.Runtime.InteropServices.Marshal.ReleaseComObject(application);
DocumentModel.Load("sample.pdf").Save("sample.docx");
Please read the entire thread, especially post #3!!!its very easy step . Click Cntrl+Shift+S select the file saving folder then select file format PDF . Job done .
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.