Можно ли получить информацию о состоянии потока в компактной среде 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
}