如何通过反射获得包含IQueryable <t>方法的MethodInfo?

时间:2018-03-08 08:27:04

标签: c# linq reflection

我试过了:

MethodInfo method = typeof(Queryable).GetMethod("Contains", new Type[] { typeof(TSource) });

但它会返回null

指定了BindingFlags

  MethodInfo method = typeof(Queryable).GetMethod(
  name: "Contains",
  bindingAttr: BindingFlags.Public | BindingFlags.Static ,
  binder: null,
  types: new Type[] { typeof(TSource) },
  modifiers: null);

但仍然返回null

0 个答案:

没有答案