Answers for "how to input an amount of time for sleep in c#"

C#
14

c# Sleep

using System.Threading;

static void Main()
{
  //do stuff
  Thread.Sleep(5000) //will sleep for 5 sec
}
Posted by: Guest on March-02-2020

Code answers related to "how to input an amount of time for sleep in c#"

C# Answers by Framework

Browse Popular Code Answers by Language