using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Aspose.Pdf;
namespace pdftest
{
class Program
{
static void Main(string[] args)
{
// Open the source PDF document
Document pdfDocument = new Document(@"C:\Users\Desktop\test.pdf");
// Save the file into MS document format
pdfDocument.Save("PDFToDOC_out.doc", SaveFormat.Doc);
//// ExEnd:PDFToDOC
Console.ReadKey();
}
}
}