How to wait for some seconds c#

Question: How to wait for some seconds c# ?

Answer:

use this method and specify the time in milliseconds

Thread.Sleep(1000);

Note: 1000 milliseconds = 1 second

Leave a Comment

Scroll to Top