

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C# Program to Kill a Thread
Create a thread first and start it −
// new thread Thread thread = new Thread(c.display); thread.Start();
Now display the thread and set a stop function to stop the working of the thread −
public void display() { while (!flag) { Console.WriteLine("It's Working"); Thread.Sleep(2000); } } public void Stop() { flag = true; } }
Example
The following is the complete code to learn how to kill a thread in C#.
using System; using System.Threading.Tasks; using System.Threading; class Demo { static void Main(string[] args){ MyClass c = new MyClass(); // new thread Thread thread = new Thread(c.display); thread.Start(); Console.WriteLine("Press any key to exit!"); Console.ReadKey(); c.Stop(); thread.Join(); } } public class MyClass { private bool flag = false; public void display() { while (!flag) { Console.WriteLine("It's Working"); Thread.Sleep(2000); } . } . public void Stop() { flag = true; } }
Output
It's Working Press any key to exit!
- Related Questions & Answers
- C# Program to Pause a Thread
- C# Program to create a Simple Thread
- C# Program to Create a Thread Pool
- C# Program to pass Parameter to a Thread
- Kill Process in C++
- How to Kill a Process by Name in Linux?
- C# Program to display priority of Thread
- The kill() Function in Perl
- How to get the thread ID from a thread in C#?
- C# Program to Check status of Current Thread
- C# Program to display name of Current Thread
- C# Program to implement Sleep Method Of Thread
- C++ program to find minimum number of locations to place bombs to kill all monsters
- How to Kill queries in pgAdmin in PostgreSQL?
- How a thread can interrupt another thread in Java?
Advertisements