Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

How to create delay in C#

2 Answers

0 votes
using System;
using System.Threading;
    
class Program
{
    static void Main() {
        try {
            Console.WriteLine("Counting...");
 
            int milliseconds = 3000;
            Thread.Sleep(milliseconds); // will lock the thread
            
            Console.WriteLine("Lift Off");
        }
        catch (Exception ex) {
            Console.WriteLine(ex.Message);
        }
    }
}


 
/*
run:
 
Counting...
Lift Off
 
*/
    

 



answered Jul 11, 2015 by avibootz
edited Apr 12, 2024 by avibootz
0 votes
using System;
using System.Threading;
    
class Program
{
    static void Main() {
        try {
            Console.WriteLine("Counting...");
 
            Thread.Sleep((int)TimeSpan.FromSeconds(3).TotalMilliseconds);
 
            Console.WriteLine("Lift Off");
        }
        catch (Exception ex) {
            Console.WriteLine(ex.Message);
        }
    }
}


 
/*
run:
 
Counting...
Lift Off
 
*/

 



answered Jul 11, 2015 by avibootz
edited Apr 12, 2024 by avibootz

Related questions

1 answer 154 views
1 answer 127 views
127 views asked Jul 27, 2022 by avibootz
1 answer 97 views
1 answer 89 views
3 answers 194 views
194 views asked Mar 29, 2024 by avibootz
3 answers 156 views
156 views asked Mar 29, 2024 by avibootz
3 answers 255 views
255 views asked Jul 12, 2015 by avibootz
...