I am using iText for .NET for converting HTML to PDF.
I\'m using HtmlParser to convert an HTML page to PDF, but the problem is that Htmlparser only seems to convert the
Error 1 Cannot implicitly convert type
'System.Collections.Generic.List' to
'System.Collections.ArrayList'
Use it like this:
List htmlarraylist = HTMLWorker.ParseToList(new StreamReader(tempFile),new StyleSheet());
foreach (IElement element in htmlarraylist)
{
document.Add(element);
}