How to resolve ambiguity when argument is null?

后端 未结 7 1583
轮回少年
轮回少年 2021-01-03 19:36

Compiling the following code will return The call is ambiguous between the following methods or properties error. How to resolve it since I can\'t explicitly co

7条回答
  •  伪装坚强ぢ
    2021-01-03 20:19

    The Func() methods accept a reference type as a parameter, which can be null. Since you're calling the method with an explicit null value, the compiler doesn't know whether your null is supposed to be in reference to a Class1 object or a Class2 object.

    You have two options:

    Cast the null to either the Class1 or Class2 type, as in Func((Class1)null) or Func((Class2)null)

    Provide a new overload of the Func() method that accepts no parameters, and call that overload when you don't have an explicit object reference:

    void Func()
    {
        // call this when no object is available
    }
    

提交回复
热议问题