.NET 中的反射
Reflection in .NET
class Program
{
static void Main(string[] args)
{
Type doub = typeof(Doub);
object result = doub.InvokeMember("Call", BindingFlags.InvokeMethod, null, null, new object[] { });
}
}
public class Doub
{
public Collection<string> Call()
{
Collection<string> collection = new Collection<string>();
return collection;
}
public Collection<T> Call<T>()
{
Collection<T> collection = new Collection<T>();
return collection;
}
}
我试图调用 Call 方法,但程序无法确定调用哪个方法。错误:(System.Reflection.AmbiguousMatchException:“找到不明确的匹配项”)。如何准确调用 class 的 Call() 方法?
您需要使用不同的方式来获取要执行的方法。例如,Type
对象有一个名为 GetMethod
的方法,带有各种重载,您可以使用允许您 specify how many generic parameters the method has 的方法,例如:
Type doub = typeof(Doub);
var callMethod = doub.GetMethod("Call", 0, new Type[] {});
// You need an instance of the object to call the method on
var x = new Doub();
var result = callMethod.Invoke(x, new object[] {});
class Program
{
static void Main(string[] args)
{
Type doub = typeof(Doub);
object result = doub.InvokeMember("Call", BindingFlags.InvokeMethod, null, null, new object[] { });
}
}
public class Doub
{
public Collection<string> Call()
{
Collection<string> collection = new Collection<string>();
return collection;
}
public Collection<T> Call<T>()
{
Collection<T> collection = new Collection<T>();
return collection;
}
}
我试图调用 Call 方法,但程序无法确定调用哪个方法。错误:(System.Reflection.AmbiguousMatchException:“找到不明确的匹配项”)。如何准确调用 class 的 Call() 方法?
您需要使用不同的方式来获取要执行的方法。例如,Type
对象有一个名为 GetMethod
的方法,带有各种重载,您可以使用允许您 specify how many generic parameters the method has 的方法,例如:
Type doub = typeof(Doub);
var callMethod = doub.GetMethod("Call", 0, new Type[] {});
// You need an instance of the object to call the method on
var x = new Doub();
var result = callMethod.Invoke(x, new object[] {});