1

我向 winforms 应用程序添加了一个新表单,现在我在 GetInstance() 方法的 iTextSharp.Core Version.cs 代码文件中遇到异常。

Type type = Type.GetType("iTextSharp.license.LicenseKey, itextsharp.LicenseKey");
MethodInfo m = type.GetMethod("GetLicenseeInfo");

它显示类型为空。它以前从未这样做过,所以我不知道为什么现在这样做。

4

2 回答 2

2

我在这里找到了答案:PdfWriter.GetInstance throws System.NullReferenceException

我正在捕获所有抛出的异常:

Debug -> Exceptions -> 去掉“Common Language Runtime Exceptions”的“Thrown”列中的复选框。

于 2014-06-18T13:17:32.420 回答
0

检查大写/小写。

例如它不是

MethodInfo m = type.GetMethod("GetLicenseeInfo");

MethodInfo m = type.GetMethod("GetLicenseInfo");
于 2013-08-18T16:46:18.397 回答