I am getting a system.outofmemoryException when I try to bind bookmarkeditor to a
large pdf file that is 55 MB. Is there a memory limit on the bookmarkeditor?
using (Aspose.Pdf.Facades.PdfBookmarkEditor editor = new Aspose.Pdf.Facades.PdfBookmarkEditor())
{
editor.BindPdf(finalPDFDoc);
//iterate list of bookmarks (parent/child list)
foreach (string bookmark in Bookmarks.Keys)
{
///////////
}:Thanks.