You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mchsamples-.net-core/ex_051_006_TaskDelay/Program.cs

24 lines
712 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ex_051_006_TaskDelay
{
class Program
{
static void Main(string[] args)
{
//Task.Delay est l'équivalent de Thread.Sleep en version asynchrone
Task.Delay(2000).GetAwaiter().OnCompleted(() => Console.WriteLine(73));
Task.Delay(3000).ContinueWith(précédent => Console.WriteLine("coucou"))
.ContinueWith(précédent => Console.WriteLine("Appuyez sur entrée"));
Console.WriteLine("attendez 73 et coucou, puis appuyez sur entrée");
Console.ReadLine();
}
}
}