gpt4 book ai didi

c# - (Func) 和 (Func>) 之间的调用不明确

转载 作者:行者123 更新时间:2023-11-30 17:32:55 25 4
gpt4 key购买 nike

为什么我在 (Func<IInterface>) 之间会出现不明确的调用错误和 (Func<Task<IInterface>>)对于下一个代码示例?以及如何在不替换方法组调用的情况下避免此错误?

public class Program
{
public static void Main(string[] args)
{
Method(GetObject);
}

public static IInterface GetObject() => null;

public static void Method(Func<IInterface> func) =>
Console.WriteLine("First");

public static void Method(Func<Task<IInterface>> funcAsync) =>
Console.WriteLine("Second");
}

public interface IInterface { }

最佳答案

这将解决问题,因为您的方法需要一个返回 IInterface 的函数

public class Program
{
public static void Main(string[] args)
{
Method(() => GetObject());
}

public static IInterface GetObject() => null;

public static void Method(Func<IInterface> func) =>
Console.WriteLine("First");

public static void Method(Func<Task<IInterface>> funcAsync) =>
Console.WriteLine("Second");
}

public interface IInterface { }

关于c# - (Func<IInterface>) 和 (Func<Task<IInterface>>) 之间的调用不明确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45373165/

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