Check out example codes for "c# thread sleep". It will help you in understanding the concepts better.
Code Example 1
using System.Threading;
static void Main()
{
//do stuff
Thread.Sleep(5000) //will sleep for 5 sec
}
Code Example 2
Thread.Sleep(2000); //in ms
Learn ReactJs, React Native from akashmittal.com