它存在吗?我尝试使用 iTextSharp,但它不起作用。这个小代码示例是错误的:
IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication();
Document document = new Document();
string path = "/first.pdf";
PdfWriter.GetInstance(document, store.CreateFile( path));
document.Open();
document.SetPageSize(PageSize.A4);
Paragraph p = new Paragraph("Working with pdfs");
document.Close();
错误信息是:
无法加载文件或程序集“系统,版本=2.0.0.0,文化=中性,PublicKeyToken=b77a5c561934e089”或其依赖项之一。该系统找不到指定的文件。
有谁能够帮我?工作示例代码,工作 dll,任何东西......