Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PdfReader reader = new PdfReader();
我在 PdfReader 上遇到了这个错误。这是一个 WPF 项目,我最初尝试了 PdfSharp-Wpf.dll,但我也尝试了 PdfSharp.dll。两者都收到此错误。
有什么想法我在这里做错了吗?
PdfReader 是一个无法实例化的静态类。你想做:
PdfDocument document = PdfReader.Open(@"/path/to/file.pdf");