
Satte fast den med dubbelhäftande mattejp - hoppas att det håller! Blev riktigt nöjd med passform, färg och allt. "Sobert grå" skulle det stått i någon designtidning, ha ha!

// Do all jobs, starting threads in a
// controlled fashion via the ThreadPool
for (int i = 0; i < numJobs; i++)
{
ManualResetEvent workDone =
new ManualResetEvent(false);
joinEvents.Add(workDone);
ThreadPool.QueueUserWorkItem(delegate
{
// do stuff
workDone.Set();
});
}
// Wait for all threads to finish
// (or at least signal 'work done')
foreach (ManualResetEvent joinEvent in joinEvents)
{
joinEvent.WaitOne();
}