Logo

Programming-Idioms

History of Idiom 45 > diff from v28 to v29

Edit summary for version 29 by :
New Csharp implementation by user [zehberk]

Version 28

2016-02-16, 16:55:51

Version 29

2016-02-16, 17:45:36

Idiom #45 Pause execution for 5 seconds

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

Idiom #45 Pause execution for 5 seconds

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

Imports
System.Threading;
Code
Thread.Sleep(5000);
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