标签: c# .net reflection
var v = xyz.GetType(); var generic = v.GetMethod("Update", new Type[] { typeof(IEnumerable<>) });//returns null ... public class Xyz { public void Update<T>(IEnumerable<T> translations) where T : ijk ...
调用v.GetMethods()[1]会返回正确的方法。
v.GetMethods()[1]