give an example for suspending, resuming, and stopping a
thread ?



give an example for suspending, resuming, and stopping a thread ?..

Answer / tina

using System;
using System.Threading;

class MyThread {
public Thread thrd;

public MyThread(string name) {
thrd = new Thread(new ThreadStart(this.run));
thrd.Name = name;
thrd.Start();
}

// This is the entry point for thread.
void run() {
Console.WriteLine(thrd.Name + " starting.");

for(int i = 1; i <= 1000; i++) {
Console.Write(i + " ");
if((i%10)==0) {
Console.WriteLine();
Thread.Sleep(250);
}
}
Console.WriteLine(thrd.Name + " exiting.");
}
}

public class SuspendResumeStop {
public static void Main() {
MyThread mt1 = new MyThread("My Thread");

Thread.Sleep(1000); // let child thread start executing

mt1.thrd.Suspend();
Console.WriteLine("Suspending thread.");
Thread.Sleep(1000);

mt1.thrd.Resume();
Console.WriteLine("Resuming thread.");
Thread.Sleep(1000);

mt1.thrd.Suspend();
Console.WriteLine("Suspending thread.");
Thread.Sleep(1000);

mt1.thrd.Resume();
Console.WriteLine("Resuming thread.");
Thread.Sleep(1000);

Console.WriteLine("Stopping thread.");
mt1.thrd.Abort();

mt1.thrd.Join(); // wait for thread to terminate

Console.WriteLine("Main thread terminating.");
}
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What does || mean in programming?

0 Answers  


What is the difference between dll and lib?

0 Answers  


Can property defined in Interface.

4 Answers   Synechron,


What is the difference between CONST and READONLY?

0 Answers   BirlaSoft,


What are the examples of data types?

0 Answers  






Is c# a strongly-typed language?

0 Answers  


Can we write one page in c# and other in vb in one application ?

3 Answers   Keane India Ltd,


Can we change static variable value in c#?

0 Answers  


What is the difference between values and reference types?

0 Answers   Alcatel-Lucent,


What is sqlcommandbuilder c#?

0 Answers  


i want display a given number into Rupees Format Like Given number is : 156735 my Expected output is 1,56,735. how to display?

6 Answers  


What is session state in asp net c# with example?

0 Answers  


Categories