System.Threading.Thread.CurrentThread返回的是当前线程的一个实例关闭线程可以调用该线程实例的关闭方法Close()如:thread t=new thread(); t.close();或System.Threading.Thread.CurrentThread.Close();
thread t=new thread();t。close();
myThread.Abort(); //终止线程
thread.kill