Why does “Func test = value ? F: F” not compile?

后端 未结 2 1775
借酒劲吻你
借酒劲吻你 2020-12-06 09:56

I have seen similar questions to this, but they involve different types so I think this is a new question.

Consider the following code:

public void T         


        
2条回答
  •  醉话见心
    2020-12-06 10:15

    The question was changed significantly, so my original answer is a bit off by now.

    However, the problem is essentially the same. I.e. there could be any number of matching delegate declarations for F and since there is no implicit conversion between two identical delegate declarations the type of F cannot be converted to Func.

    Likewise, if you declare

    private delegate void X();
    private delegate void Y();
    private static void Foo() {}
    

    You cannot do

    X x = Foo;
    Y y = x;
    

    Original answer:

    It doesn't work because method groups cannot be assigned to an implicitly typed variable.

    var test = Func; doesn't work either.

    The reason being that there could be any number of delegate types for Func. E.g. Func matches both of these declarations (in addition to Action)

    private delegate void X();
    private delegate void Y();
    

    To use implicitly typed variables with method groups, you need to remove the ambiguity by casting.


    See archil's answer for a concrete example of one way to fix this. That is, he shows what the corrected code might look like [assuming the delegate you desire to match is Action].

提交回复
热议问题