我目前正在.Net 4.0上用C#编程,我找不到下一个解决方案:
我正在使用反射,在我的代码的某些部分,我创建了一个MethodInfo的实例,但现在我需要使用MethodInfo的return参数的返回类型创建一个通用Object的实例。
更多解释
//This is an example of the instance I created of method info
MethodInfo myMethodInfo = myObject.GetType().GetMethod("MyMethod");
//Now I need to create an instance of a generic object of the type of my
//MethodInfo instance return parameter like this ---NOT WORKING----
GenericObject<myMethodInfo.ReturnParameter.GetType()> newInstance = new GenericObject<myMethodInfo.ReturnParameter.GetType()>();
我不知道如何获取返回参数信息的类。