Sleep (kernel32)
Last changed: -186.136.223.176

.
Summary
Stop processing (sleep process) for specified number of miliseconds

C# Signature:

[DllImport("kernel32.dll")]
static extern void Sleep(uint dwMilliseconds);

VB Signature

Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Integer)

User-Defined Types:

None.

Notes:

This allows you to call 'Sleep' and force you app to sleep.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

System.Threading.Thread.Sleep

Documentation
Sleep on MSDN