それは存在しますか?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();
エラーメッセージは次のとおりです。
ファイルまたはアセンブリ 'System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' またはその依存関係の 1 つを読み込めませんでした。システムは、指定されたファイルを見つけることができません。
誰でも私を助けることができますか?動作するサンプル コード、動作する dll、何でも...