Je porte une bibliothèque vers .NET core et pour maximiser la portabilité, j'ai besoin d'éliminer la dépendance à System.Threading.Thread, et donc à Thread.Sleep. Quelle alternative à cela?
you can use
Task.Delay(2000).Wait(); // Wait 2 seconds with blocking
await Task.Delay(2000); // Wait 2 seconds without blocking