How do I get my C# program to sleep for 50 msec?

System.Threading.Thread.Sleep(50);

Remember though, that doing this in the main GUI thread will block your GUI from updating (it will feel “sluggish”)

Just remove the ; to make it work for VB.net as well.

Leave a Comment