I want to run a class with different value in a thread list. like this :
int index = 0;
foreach (TreeNode nd in tvew.Nodes[0].Nodes)
{
threadping[index] = new Thread(delegate()
{ this.Invoke(new DelegateClientState(InvokeCheckNetworkState), new object[] {nd}); });
threadping[index].Name = nd.Name;
threadping[index].IsBackground = true;
threadping[index].Start();
index++;
}
but when i debug the code, i see that the class parameter is just the last value. i mean when i go through thread class i see that each time that class run the value of the input parameter is the last value for the last thread.
Can anybody tell me WHY?