我正在使用反射加载 dll 并尝试调用返回List<customType>
. 如何调用方法并获取返回值。我试过这个,但说entry point not found exception
。
MethodInfo[] info= classType.GetMethods();
MethodInfo method = mInfo.FirstOrDefault(c => c.Name == "GetDetails");
object values = method.Invoke(classInstance, new object[] { param1});
价值观有例外entry point not found
。