Runtime.Delay

Prototypes

static void Delay( int nMilliseconds )

Parameters

int nMilliseconds
The number of milliseconds to delay.

Remarks

This method stalls program execution by the specified number of milliseconds. There is no functional difference between this method and the module Delay.

Important: Do not use this method to delay for more than a few seconds.

Example
print "Start";

Runtime.Delay( 1000 );

print "Finished";
See Also

Delay