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.

Possible Duplicate:
C# 3.0 generic type inference - passing a delegate as a function parameter

Why can't the type arguments of the following code sample in the call in Main be inferred?

using System;

class Program
{
    static void Main(string[] args)
    {
        Method(Action);
    }

    static void Action(int arg)
    {
        // ...
    }

    static void Method<T>(Action<T> action)
    {
        // ...
    }
}

This gives the following error message:

error CS0411: The type arguments for method Program.Method<T>(System.Action<T>) cannot be inferred from the usage. Try specifying the type arguments explicitly.

share|improve this question
Thank you very much. Searched but I couldn't find it. – Pieter Sep 8 '11 at 18:52
@Pieter: The post mentioned by Darin has the answer, and has some good links to more info. – James Michael Hare Sep 8 '11 at 18:53
Read 10 posts or something, but the above one wasn't among them. – Pieter Sep 8 '11 at 18:56
@Pieter: first hit here: google.com/… – Darin Dimitrov Sep 8 '11 at 18:59
Yep, you're right. I however searched through the suggestions that were presented when asking the question. May'be I'll put a bit more effort in searching the next time :). – Pieter Sep 8 '11 at 19:00
show 1 more comment

marked as duplicate by Darin Dimitrov, BoltClock, James Michael Hare, Pieter, LarsTech Sep 8 '11 at 18:59

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

The problem is that Action (aside from already being a type; please rename it) is actually a method group that is convertible to the delegate type Action<int>. The type-inference engine can't infer the type because method group expressions are typeless. If you actually cast the method group to Action<int>, then type-inference succeeds:

Method((Action<int>)Action); // Legal
share|improve this answer

This works:

    static void Main(string[] args)
    {
        Method<int>(Action);
    }

    static void Action(int arg)
    {
        // ...
    }

    static void Method<T>(Action<T> action)
    {
        // ...
    }
share|improve this answer
1  
Yes, but that's not what's being asked here. What is asked is why what is shown by the OP doesn't work. – Darin Dimitrov Sep 8 '11 at 18:54

Just put this is a compiler I see what you mean.

I think it's because Action is used as a method group, but it's not of type Action<int>.

If you cast it to this type it works:

Method((Action<int>)Action);
share|improve this answer
5  
I would expect it to be int. And I guess the OP already knows what the compiler is telling him. – Darin Dimitrov Sep 8 '11 at 18:51
Yep until I put it in a compiler I didn't release the context of the problem. Not immediately obvious the Action refers to the method. – TheCodeKing Sep 8 '11 at 19:12

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