我已经检查了一些关于反射和重载方法的其他帖子,但可以找到任何帮助。我发现的一篇帖子是this one,但这并没有多大帮助。
我有以下两种方法:
1 | public void Delete<T>(T obj) where T : class { ... }
2 | public void Delete<T>(ICollection<T> obj) where T : class { ... }
我正在努力获得方法N°1。
我尝试了经典的GetMethod("Delete")
方法,但由于有两个方法使用此名称Ambiguous
- 抛出了异常。我尝试使用其他参数(如GetMethod("Delete", new [] { typeof(Object) })
)指定方法模式,但没有找到任何内容(返回null)。
我想我也可以循环遍历所有方法并检查参数。
我写了以下方法......
public static IEnumerable<MethodInfo> GetMethods(this Type type, String name, Type schemaExclude)
{
IEnumerable<MethodInfo> m = type.GetRuntimeMethods().Where(x => x.Name.Equals(name));
return (from r in m let p = r.GetParameters() where !p.Any(o => schemaExclude.IsAssignableFrom(o.ParameterType)) select r).ToList();
}
...返回不包含类型为schemaExclude
的参数的方法。
GetMethods("Delete", typeof(ICollection))
没有按预期工作。
显然..ICollection'1[T]
不能分配给ICollection
。它也不属于IEnumerable
,IEnumerable<>
和ICollection<>
。我再次尝试使用typeof(Object)
,它确实有效,但确实返回了两种方法(就像它应该的那样)。
我到底错过了什么?
答案 0 :(得分:2)
您可以通过检查其通用参数类型来查找该方法,如下所示:
return type
.GetRuntimeMethods()
.Where(x => x.Name.Equals("Delete"))
.Select(m => new {
Method = m
, Parameters = m.GetParameters()
})
.FirstOrDefault(p =>
p.Parameters.Length == 1
&& p.Parameters[0].ParameterType.IsGenericType
&& p.Parameters[0].ParameterType.GetGenericTypeDefinition() == typeof(ICollection<>)
)?.Method;
以上筛选符合以下条件的方法:
ICollection<>