I have a class (nodelist) and I'm creating a list of these in my thread manager class.
The worker class (for the threads) contains a property of this type of list.
When I create the thread I set the worker class' property = the list from the thread manager class.
My question is, with multiple threads running, if one thread changes the value of its list, is that affecting the list in the other threads or are they truely unique to each thread?
If not then how do I make them unique?