vote up 1 vote down star

Consider type like this one

public interface IHaveGenericMethod
{
   T1 Method<T1>(T1 parm);
   T2 Method<T1,T2>(T1 parm);
   int Method2(int parm);
}

How do I get a methodInfo for its methods? for a regular non-generic method, like method2, I can go with

typeof(IHaveGenericMethod).GetMethod("methodName",new Type[]{typeof(itsParameters)});

for a generic method though, I can't, since it's parameters are not types per-se. So, how do I do that? I know that I can call

typeof(IHaveGenericMethod).GetMethods()

to get all methods of that type, and then iterate over that collection and do some matching, but it's ugly. Is there a better way?

flag

77% accept rate
re "but that does not answer my question" - maybe, but see "But nothing cleaner." - i.e. AFAIK you can't really get a lot cleaner than that. – Marc Gravell Jan 11 '09 at 22:28

2 Answers

vote up 1 vote down check

Well, they are types - of sorts:

    foreach (var method in typeof(IHaveGenericMethod).GetMethods())
    {
        Console.WriteLine(method.Name);
        if (method.IsGenericMethodDefinition)
        {
            foreach (Type type in method.GetGenericArguments())
            {
                Console.WriteLine("> " + type.Name);
            }
        }
    }

So you can check by the number of args, and check the signature. But nothing cleaner.

link|flag
well, yeah, but that does not answer my question – Krzysztof Koźmic Jan 11 '09 at 22:08
(replied to original question so it appears on your list...) – Marc Gravell Jan 11 '09 at 23:23
Fair enough . – Krzysztof Koźmic Jun 23 at 20:18
vote up 1 vote down

Be sure to check out the MSDN page "Reflection and Generic Types".

since it's parameters are not types per-se

Actually, I think it's because you want to query type parameters, but the type list you can provide to GetMethod() is not for type parameters.

Also, remember that all you need to select a "method group" of generic methods is to know the number of generic type parameters. So you can just count them.

then iterate

Don't iterate, query:

       var mi = from mi in typeof(IHaveGenericMethod).GetMethods()
                where mi.Name == "Method"
                where mi.IsGenericMethodDefinition
                where mi.GetGenericArguments().Length == 2
                select mi;
link|flag
this is sneaky, but it still can return more than one method. Also it requires LINQ, ergo .NET 3.5, which is what I wanted to avoid. The only improvement I could think of is, instead of typeof(IHaveGenericMethod).GetMethods() use typeof(IHaveGenericMethod).GetMembers(lots,of,arguments) – Krzysztof Koźmic Jan 13 '09 at 23:19

Your Answer

Get an OpenID
or

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