Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's the best way to call a generic method when the type parameter isn't known at compile time, but instead is obtained dynamically at runtime?

Consider the following sample code - inside the Example() method, what's the most concise way to invoke GenericMethod() using the type stored in the myType variable?

public class Sample
{

    public void Example(string typeName)
    {
        Type myType = FindType(typeName);

        // what goes here to call GenericMethod<T>() ?    
        GenericMethod<myType>(); // This doesn't work

        // what changes to call StaticMethod<T>() ?
        Sample.StaticMethod<myType>(); // This also doesn't work
    }

    public void GenericMethod<T>()
    {   
        ...
    }

    public static void StaticMethod<T>()
    {   
        ...
    }    
}
share|improve this question
1  
I tried Jon's solution and could not get it to work until I made the generic method public in my class. I know that another Jon replied saying that you need to specify the bindingflags but this did not help. – naskew Jun 14 '12 at 7:31
1  
You also need BindingFlags.Instance, not just BindingFlags.NonPublic, to get the private/internal method. – Lars Kemmann Feb 15 at 19:11

4 Answers

up vote 198 down vote accepted

You need to use reflection to get the method to start with, then "construct" it by supplying type arguments with MakeGenericMethod:

MethodInfo method = typeof(Sample).GetMethod("GenericMethod");
MethodInfo generic = method.MakeGenericMethod(myType);
generic.Invoke(this, null);

EDIT: For a static method, pass null as the first argument to Invoke. That's nothing to do with generic methods - it's just normal reflection.

share|improve this answer
18  
+1; note that GetMethod() only considers public instance methods by default, so you may need BindingFlags.Static and/or BindingFlags.NonPublic. – Jon of All Trades Dec 16 '11 at 22:32
The correct combination of flags is BindingFlags.NonPublic | BindingFlags.Instance (and optionally BindingFlags.Static). – Lars Kemmann Feb 15 at 19:10
@LarsKemmann: Why NonPublic when the desired method is public? – Jon Skeet Feb 15 at 22:08
Sorry, I should have specified; that was in reply to @Jon of All Trades's comment on how to get at non-public methods. Your answer is correct without any binding flags for public methods, of course. – Lars Kemmann Feb 17 at 5:00
1  
@ChrisMoschini: Added that to the answer. – Jon Skeet Mar 22 at 21:32
show 1 more comment

Just an addition to the original answer. While this will work:

MethodInfo method = typeof(Sample).GetMethod("GenericMethod");
MethodInfo generic = method.MakeGenericMethod(myType);
generic.Invoke(this, null);

It is also a little dangerous in that you lose compile-time check for GenericMethod. If you later do a refactoring and rename GenericMethod, this code won't notice and will fail at run time. Also, if there is any post-processing of the assembly (for example obfuscating or removing unused methods/classes) this code might break too.

So, if you know the method you are linking to at compile time, and this isn't called millions of times so overhead doesn't matter, I would change this code to be:

Action<> GenMethod = GenericMethod<int>;  //change int by any base type 
                                          //accepted by GenericMethod
MethodInfo method = this.GetType().GetMethod(GenMethod.Method.Name);
MethodInfo generic = method.MakeGenericMethod(myType);
generic.Invoke(this, null);

While not very pretty, you have a compile time reference to GenericMethod here, and if you refactor, delete or do anything with GenericMethod, this code will keep working, or at least break at compile time (if for example you remove GenericMethod).

Other way to do the same would be to create a new wrapper class, and create it through Activator. I don't know if there is a better way.

share|improve this answer
2  
In cases where reflection is used to call a method, it's usual that the method name is itself discovered by another method. Knowing the method name in advance isn't common. – Bevan Feb 27 '11 at 21:59
3  
Well, I agree for common uses of reflection. But the original question was how to call "GenericMethod<myType>()" If that syntax was allowed, we wouldn't need GetMethod() at all. But for the question "how do I write "GenericMethod<myType>"? I think the answer should include a way to avoid losing the compile-time link with GenericMethod. Now if this question is common or not I don't know, but I do know I had this exact problem yesterday, and that's why I landed in this question. – Adrian Gallero Feb 28 '11 at 21:24
4  
You could do GenMethod.Method.GetGenericMethodDefinition() instead of this.GetType().GetMethod(GenMethod.Method.Name). It’s slightly cleaner and probably safer. – Daniel Cassidy May 10 '11 at 10:10
What does mean "myType" in your sample? – Metropolitan Dec 7 '11 at 13:45
"myType" is a variable that holds a Type. If we knew the type, we could do GenericMethod<Type>(), but since we have the type in a variable, we use reflection. – Ryan Feb 14 at 15:44

This is the same as a question I asked the other week: Reflection and generic types

I then covered how to call a generic overloaded method on my blog: http://www.aaron-powell.com/reflection-and-generics

share|improve this answer
2  
Your link resulted in 404 error. :-( – Mark Good Nov 28 '10 at 2:36
the correct link is aaron-powell.com/reflection-and-generics - in short, he's suggesting to use Linq: MethodInfo method = typeof(Helper).GetMethods(BindingFlags.Public | BindingFlags.Static).First(m => m.Name == "GetPropertyValue" && m.GetParameters().Count() == 3); – zcrar70 May 25 '11 at 15:40

With C# 4.0 reflection isn't necessary as the DLR library can call it using runtime types. Since using the dlr library is kind of a pain dynamically (instead of the C# compiler generating code for you), the open source framework ImpromptuInterface gives you easy cached run time access to the same calls the compiler would generate for you.

var name = InvokeMemberName.Create;
Impromptu.InvokeMemberAction(this, name("GenericMethod", new[]{myType}));


var staticContext = InvokeContext.CreateStatic;
Impromptu.InvokeMemberAction(staticContext(typeof(Sample)), name("StaticMethod", new[]{myType}));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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