gpt4 book ai didi

c# - 在 C# 中使用 Async 和 await 时出错

转载 作者:行者123 更新时间:2023-11-30 14:51:50 25 4
gpt4 key购买 nike

我是 C# 新手,正在尝试一些示例。我有以下代码。

public async Task<string> RunSlowOperation()
{
Console.WriteLine("Running the slow operation on thread id {0}",
Thread.CurrentThread.ManagedThreadId);

await Task.Delay(3000);
Console.WriteLine("Slow operation about to finish with thread id {0}",
Thread.CurrentThread.ManagedThreadId);

return "This operation is very slow";
}

在我的主要功能中,我使用 Task 调用此异步方法但出现错误:

Operation op = new Operation();
Task<string> t = new Task<string>(() => op.RunSlowOperation());

上面显示的错误:

Cannot convert lambda expression to type 'string' because it is not a delegate type Cannot implicitly convert type 'System.Threading.Tasks.Task<string>' to 'string'

最佳答案

为什么要在主函数中创建一个新任务?您已经可以等待您创建的任务方法。

只需在您的主函数中执行此操作:

Operation op = new Operation();
string t = await op.RunSlowOperation();

不要忘记让您的主函数异步

关于c# - 在 C# 中使用 Async 和 await 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33362084/

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