I am wondering why the C# 3.0 compiler is unable to infer the type of a method when it is passed as a parameter to a generic function when it can implicitly create a delegate for the same method.
Here is an example:
using System;
class Test
{
static void foo(int x) { }
static void bar<T>(Action<T> f) { }
static void test()
{
Action<int> f = foo; // I can do this
bar(f); // and then do this
bar(foo); // but this does not work
}
}
I would have thought that I would be able to pass foo
to bar
and have the compiler infer the type of Action<T>
from the signature of the function being passed but this does not work. However I can create an Action<int>
from foo
without casting so is there a legitimate reason that the compiler could not also do the same thing via type inference?