Logo

Programming-Idioms

History of Idiom 45 > diff from v14 to v15

Edit summary for version 15 by :

Version 14

2015-08-23, 10:11:21

Version 15

2015-08-25, 20:13:09

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