C# प्रोग्राम को x मिलीसेकंड के लिए सुप्त करने के लिए, Thread.Sleep() विधि का उपयोग करें।
इसे 1000 मिलीसेकंड के लिए सेट करने के लिए -
Thread.Sleep(1000);
निम्नलिखित कोड दिखा रहा है कि थ्रेड के लिए काउंटर कैसे सेट करें और इसे लूप के प्रत्येक पुनरावृत्ति पर 1000 मिलीसेकंड के लिए सोने के लिए सेट करें -
उदाहरण
using System;
using System.Threading;
namespace MultithreadingApplication {
public class ThreadCreationProgram {
public static void CallToChildThread() {
try {
Console.WriteLine("Child thread starts");
for (int counter = 0; counter <= 10; counter++) {
Thread.Sleep(1000);
Console.WriteLine(counter);
}
Console.WriteLine("Child Thread Completed");
} catch (ThreadAbortException e) {
Console.WriteLine("Thread Abort Exception");
} finally {
Console.WriteLine("Couldn't catch the Thread Exception");
}
}
public static void Main(string[] args) {
ThreadStart childref = new ThreadStart(CallToChildThread);
Console.WriteLine("In Main: Creating the Child thread");
Thread childThread = new Thread(childref);
childThread.Start();
//stop the main thread for some time
Thread.Sleep(5000);
}
}
} आउटपुट
In Main: Creating the Child thread Child thread starts 0 1 2 3 4 5 6 7 8