Suppose I start two threads like this:
// Start first thread Thread loaderThread1 = new Thread(loader.Load); loaderThread1.Name = \"Rope\"; loaderThread1.Sta
Note also that thread names are not required to be unique. Seems like using the thread ID might be a better option...