Logo

Programming-Idioms

History of Idiom 45 > diff from v40 to v41

Edit summary for version 41 by programming-idioms.org:
[Csharp] using

Version 40

2017-02-07, 22:09:11

Version 41

2017-03-07, 10:31:16

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Illustration

Idiom #45 Pause execution for 5 seconds

Sleep for 5 seconds in current thread, before proceeding with next instructions.

Illustration
Imports
System.Threading;
Imports
using System.Threading;
Code
Thread.Sleep(5000);
Code
Thread.Sleep(5000);
Comments bubble
Takes an int value representing milliseconds.
Comments bubble
Takes an int value representing milliseconds.
Doc URL
https://msdn.microsoft.com/en-us/library/system.threading.thread.sleep%28v=vs.110%29.aspx
Doc URL
https://msdn.microsoft.com/en-us/library/system.threading.thread.sleep%28v=vs.110%29.aspx