27 lines
568 B
C#
27 lines
568 B
C#
|
|
using System;
|
|
using System.Threading;
|
|
|
|
public class foo {
|
|
public static void Main() {
|
|
Thread thr=new Thread(new ThreadStart(foo.thread));
|
|
thr.IsBackground=true;
|
|
thr.Start();
|
|
Thread.Sleep(1200);
|
|
Console.WriteLine("Main thread returns");
|
|
}
|
|
|
|
public static void thread() {
|
|
Console.WriteLine("Thread running");
|
|
Thread.Sleep(500);
|
|
Console.WriteLine("Thread running");
|
|
Thread.Sleep(500);
|
|
Console.WriteLine("Thread running");
|
|
Thread.Sleep(500);
|
|
Console.WriteLine("Thread running");
|
|
Thread.Sleep(500);
|
|
Console.WriteLine("Thread running");
|
|
}
|
|
}
|
|
|