-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathKill.cs
More file actions
32 lines (32 loc) · 689 Bytes
/
Kill.cs
File metadata and controls
32 lines (32 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Threading.Tasks;
using System.Threading;
class Program
{
static void Main(string[] args)
{
ThreadingClass th = new ThreadingClass();
Thread thread1 = new Thread(th.DoStuff);
thread1.Start();
Console.WriteLine("Press any key to exit!!!");
Console.ReadKey();
th.Stop();
thread1.Join();
}
}
public class ThreadingClass
{
private bool flag = false;
public void DoStuff()
{
while (!flag)
{
Console.WriteLine(" Thread is Still Working");
Thread.Sleep(1000);
}
}
public void Stop()
{
flag = true;
}
}