I want to make an image viewer in C# Visual Studio 2010 which displays images one by one after seconds:
i = 0; if (image1.Length > 0) //image1
Thread.Sleep blocks your UI thread use System.Windows.Forms.Timer instead.