为什么在这个简单的情况下可以推断出类型参数?
public class Test
{
public Test()
{
Handle(Meh); // The type arguments for method cannot be inferred from the usage
}
public string Meh(int value)
{
return "";
}
public void Handle<T, U>(Func<T, U> handler)
{
}
}