I'm trying to build an application that can read PDF files. I use this guide:
http://www.codeproject.com/Articles/14170/Extract-Text-from-PDF-in-C-100-NET
but do not understand what it means by "file" is the entire url from your computer. Because when I try it as it says that it is in the wrong format.
String file = "C:/project/test2.pdf";
// create an instance of the pdfparser class
PDFParser pdfParser = new PDFParser();
// extract the text
String result = pdfParser.ExtractText(file);
Wrong message:
Error 1 No overload for method 'ExtractText' takes 1 arguments