你能访问.net Compact Framework中的Thread State吗?

时间:2011-11-07 08:18:54

标签: 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
}

1 个答案:

答案 0 :(得分:7)

根据MSDN forums正式不支持。

Suggested Workaround:使用Join(0)并检查返回标记。 真实 - 已终止,错误 - 仍在运行