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
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
Join the conversation! Your thoughts help the community grow.