gpt4 book ai didi

c# - 参数为空时如何解决歧义?

转载 作者:IT王子 更新时间:2023-10-29 04:22:44 26 4
gpt4 key购买 nike

编译以下代码将返回The call is ambiguous between the following methods or properties错误。由于我无法将 null 显式转换为这些类中的任何一个,因此如何解决它?

static void Main(string[] args)
{
Func(null);
}

void Func(Class1 a)
{

}

void Func(Class2 b)
{

}

最佳答案

Func((Class1)null);

关于c# - 参数为空时如何解决歧义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4044055/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com