Sleep function kernel32
Suspends the execution of the current thread until the time-out interval elapses.
void Sleep(
DWORD dwMilliseconds
);
Implementation
void Sleep(int dwMilliseconds) => _Sleep(dwMilliseconds);
Suspends the execution of the current thread until the time-out interval elapses.
void Sleep(
DWORD dwMilliseconds
);
void Sleep(int dwMilliseconds) => _Sleep(dwMilliseconds);