gpt4 book ai didi

c# - 如何在 C# 中使用 Task.Delay()?

转载 作者:行者123 更新时间:2023-12-04 15:32:27 25 4
gpt4 key购买 nike

<分区>

我是 C# 的新手,我想在我的代码中尝试 Task.Delay(),但我遇到了一些错误。

这是我的代码:

static public void Main(string[] args)
{
Delay();
}

static async Task Delay()
{
for (int i = 0; i < 5; i++)
{
Console.WriteLine(i);
await Task.Delay(1000);
}
}

这是我得到的错误:

The statement is not awaited and execution of current method continues before the call is completed. Consider using 'await' operator or calling 'Wait' method

它不会每秒打印每个数字,也许我做错了?

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