Parameters & Returns
Parameters
Returns
Quick Summary
Pauses program execution for specified milliseconds.
Takes milliseconds (number of milliseconds to pause).
Returns nothing.
Technical Exegesis...
Suspends program execution for the specified number of milliseconds. Uses the Windows Sleep function to pause the current thread. If milliseconds is less than or equal to 0, the function returns immediately without delay.
This is a blocking operation that halts all program execution for the specified duration. Useful for creating delays, pacing animations, or throttling operations. Be aware that excessive delays can make the program appear unresponsive.