标签: c# compact-framework
是否可以在紧凑的框架3.5中获取线程状态信息?
Thread th=new Thread(new ThreadStart(DoIT)); th.Start(); Thred.sleep(1000); th.??? // is thread running, suspended, etc.? void DoIT(){ //do stuff in here and exit after some second }
答案 0 :(得分:7)
根据MSDN forums正式不支持。
Suggested Workaround:使用Join(0)并检查返回标记。 真实 - 已终止,错误 - 仍在运行
Join(0)