You should make local copy of variable.
Try this:
foreach (string server in stringList)
{
string local = server;
ThreadStart work = delegate { Threadjob(local); };
new Thread(work).Start();
//Thread.Sleep(10); // 10 ms delay of main thread
}
More info here: Captured variable in a loop in C#