Creating a Pause in Execution - C# / C Sharp
int pauseTime = 2000; System.Threading.Thread.Sleep(pauseTime); "C# Learner" wrote in message news:8b6n10p2fnhbl02jlcr2cbp1drq6ke0dch@4ax.com... What's a nice way to create a non-blocking pause in execution? Will I need to use ......