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