How to add delay in loop execution in C#?

Question:

How to add delay in loop execution in C#?

Answer:

Look off. doc to Thread.Sleep Method .

System.Threading.Thread.Sleep(50);
Scroll to Top