If I start a thread in the following manner
Thread newThread = new Thread(new ParameterizedThreadStart(MyThreadMethod));
Object myObject = new Object();
newThread.Start(myObject);
Can I find out what has it done to myObject after it has finished the task?
// at some point later
if(newThread.ThreadState == ThreadState.Stopped)
{
//access my object? how?
}