使用Func <t,u =“”>时无法推断类型参数

时间:2017-05-02 12:22:31

标签: c#

为什么在这个简单的情况下可以推断出类型参数?

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)
  {
  }
}

0 个答案:

没有答案