While coding, we need to slow down working some logic
Use Thread.Sleep to pause a process for a while.
for (int i = 0; i <= 10; i++) { Console.WriteLine(i); System.Threading.Thread.Sleep(1000); }
This code pauses each iteration for a second.
1000 milisecond = 1 second