using System; using System.Threading.Tasks; class Program { static async Task Main() { for (int i = 0; i < 5; i++) { Console.WriteLine($"开始第 {i + 1} 次循环"); await Task.Delay(1000); Console.WriteLine($"结束第 {i + 1} 次循环"); } } }