Guest User

Untitled

a guest
Jul 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. async Task Main()
  2. {
  3. for (var i = 0; i < 20; i++)
  4. {
  5. await Run(); // Just to show it many times
  6. }
  7. }
  8.  
  9. public async Task Run()
  10. {
  11. var sw = Stopwatch.StartNew();
  12. await Task.Delay(1);
  13. sw.Stop();
  14. Console.WriteLine(sw.ElapsedMilliseconds);
  15. }
Add Comment
Please, Sign In to add comment