如何获取一个指定进程的某个线程的状态?
调用线程对象的Suspend()方法就可以挂起一个线程。主要程序代码:System.Threading.Threadth=newSystem.Threading.Thread(Show); th.Start();th.Suspend();