These is two overload of Where method in Enumerable class:

namespace System.Linq {
    public static class Enumerable {
        public static IEnumerable<TSource> Where<TSource>(this IEnumerable<TSource> source, Func<TSource, bool> predicate);
        public static IEnumerable<TSource> Where<TSource>(this IEnumerable<TSource> source, Func<TSource, int, bool> predicate);
    }

So

var where = typeof(Enumerable).GetMethod("Where") 

cannot work, it will throw out an exception. I had to try like below:

var types = new[] { 
    typeof(IEnumerable<>), 
    typeof(Func<,>)};
var where = typeof(Enumerable).GetMethod("Where", types);

It return null, there is something wrong.

Please help me fix it! Thanks!

link|improve this question
typeof(Enumerable).GetMethods().First(w=>w.Name=="Where"); works, but i just want know how to get it by Type.GetMethod(string name, Type[] types) – Dapeng Lu Sep 24 '11 at 10:35
1  
The Where method that takes an IQueryable and an Expression is in Queryable, not in Enumerable – Thomas Levesque Sep 24 '11 at 11:09
@Thomas Levesque Thanks, I made a mistake! – Dapeng Lu Sep 24 '11 at 12:34
feedback

2 Answers

You can't accomplish this with only GetMethod() because it has limitations with generics. This is how you would do it with GetMethod() properly.

Type enumerableType = typeof(Enumerable);
MemberInfo[] members = enumerableType.GetMember("Where*");
MethodInfo whereDef = (MethodInfo)members[0]; // Where<TSource>(IEnumerable<TSource, Func<TSource,Boolean>)
Type TSource = whereDef.GetGenericArguments()[0]; // TSource is the only generic argument
Type[] types = { typeof(IEnumerable<>).MakeGenericType(TSource), typeof(Func<,>).MakeGenericType(TSource, typeof(Boolean)) };
MethodInfo method = enumerableType.GetMethod("Where", types);

The best way is to just iterate over members since it already contains both MethodInfo definitions for Where<TSource>.

link|improve this answer
Does reflection work with extension methods? – Daniel A. White Sep 24 '11 at 12:38
<!-- language: c# --> typeof (Enumerable).GetMember("Where")[0] as MethodInfo is enough. – Dapeng Lu Sep 24 '11 at 13:02
I recommended that, but I posted the other method because that was the question. @Daniel A. White, You can. You either have to know the name of the class that defines the extension method, or look for it by checking for ExtensionAttribute. The way I've found is short is to navigate through the assemblies types and check if they have any types with ExtensionAttribute. If it does, I can look at its methods and check to see if the first ParameterType is the class it is supposed to extend (ie. static void Foo(this Program)) we would be looking for Program as the ParameterType – David Anderson Sep 24 '11 at 13:05
feedback

You might be interested to see a code snippet I posted in this other answer:

It's a more general way to get any generic method via an extension method, with clean syntax that looks like:

var where = typeof(Enumerable).GetMethod(
  "Where", 
  typeof(IQueryable<Refl.T1>), 
  typeof(Expression<Func<Refl.T1, bool>>
);

Notice the Refl.T1 that takes the place of a generic type parameter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.