Suppose I start two threads like this:
// Start first thread
Thread loaderThread1 = new Thread(loader.Load);
loaderThread1.Name = \"Rope\";
loaderThread1.Sta
I suspect you might have to put the threads into a Dictionary
for that to work - but why do you want it anyway? There are usually other ways of communicating between threads (any of the lock / wait objects).
To work at the process level (i.e. not thinking of the Thread
object), see here - you could limit it to the current process, but you won't be able to interact with the thread.