我正在使用反射创建对象的实例,并在对象的类中获取方法,但是当我必须使用类型为Type
的数组以避免歧义问题时,问题就来了,这里是我试图达到的代码示例。
public class BigClass
{
public void getSomething(XmlDocument doc, ref CustomObject obj) {...}
public void getSomething(XmlDocument doc, ref CustomObject obj, string id) {...}
}
此代码来自外部程序集(file.dll),我使用下一个代码。
Assembly a = Assembly.LoadFrom("file.dll");
Type s = a.GetType("FileNamespace.BigClass");
MethodInfo inf = s.GetMethod("getSomething", new [] {typeof(XmlDocument), typeof(CustomObject), typeof(string)});
要获得使用3个参数的对象的MethodInfo
,但变量"inf"为null,我认为是因为它没有找到使用"ref"的参数的方法。
有办法解决这个问题吗?
为了获得MethodInfo,您需要查找ref类型。
MethodInfo inf = s.GetMethod("getSomething", new [] {typeof(XmlDocument), typeof(CustomObject).MakeByRefType(), typeof(string)});