show/hide this revision's text 12 deleted 1801 characters in body

In addition to Barrier, pointed out by Henk Holterman (which BTW his is a very bad usage of Barrier, see my comment to his answer), .NET 4.0 provides whole bunch of other options (to use this them in .NET 3.5 you need to download an extra DLL from Microsoft). Here's a quick survey:

First of all, you can use CountdownEvent, which works almost just like Barrier:

flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT. .. queue processing to the thread pool ......proceed with the rest of your logic...void DoSomething(string someString){    ... do some processing...    flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE

According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) CountdownEvent was specifically created to simplify scatter/gather scenarios.

Now, in your case, when the list of objects to be processed is an array, blogged a better way than queuing to the thread poolpost that lists them all, but my favorite is to use Parallel.For from the same library, like so:

Parallel.For(0, arrayStrings.Length - 1 , delegate(int i)        DoSomething(arrayStrings(i));

Finally, checkout definitely Parallel.ForEachfor even higher-level semantics:

Behind the scenes, Parallel For and ForEach queue Parallel.ForEach queues to the new and improved thread pool and wait waits until all threads are done.

--- EDIT ----Two more ways are described in this post on Parallels Extensions team blog.

One is to use Parallel.Invoke:

var actions = new List<Action>();foreach(var someString in arrayStrings)    actions.Add(() => DoSomething(someString));

Another one is to use the new Task class:

var tasks = new List<Task>();foreach(var someString in arrayStrings)    tasks.Add(Task.Factory.StartNew(() => DoSomething(someString));

As you can see, the options are many. Depending on the problem at hand and how much control your solution requires, you may prefer one option over the other. For this particular problem I would prefer Parallel.ForEach as it most clearly and concisely expresses the intention of the code.

show/hide this revision's text 11 added 69 characters in body

In addition to Barrier, pointed out by Henk Holterman (which is a very bad usage of Barrier, see my comment to his answer), .NET 4.0 provides whole bunch of other options (to use this in .NET 3.5 you need to download an extra DLL from Microsoft). Here's a quick survey:

First of all, you can use CountdownEvent, which works almost just like Barrier:

flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT
... queue processing to the thread pool ...
flagFinish.Wait();
...proceed with the rest of your logic...

...

void DoSomething(string someString){
    ... do some processing...
    flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE
}

According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) CountdownEvent was specifically created to simplify scatter/gather scenarios.

Now, in your case, when the list of objects to be processed is an array, a better way than queuing to the thread pool, is to use Parallel.For from the same library, like so:

Parallel.For(0, arrayStrings.Length - 1 , delegate(int i)
{
        DoSomething(arrayStrings(i));
});

Finally, checkout Parallel.ForEach for even higher-level semantics:

Parallel.ForEach<string>(arrayStrings, someString =>
{
    DoSomething(someString);
});

Behind the scenes, Parallel For and ForEach queue to the new and improved thread pool and wait until all threads are done.

--- EDIT ---- Two more ways are described in this post on Parallels Extensions team blog.

One is to use Parallel.Invoke:

var actions = new List<Action>();
foreach(var someString in arrayStrings)
{
    actions.Add(() => DoSomething(someString));
}
Parallel.Invoke(actions.ToArray());

Another one is to use the new Task class:

var tasks = new List<Task>();
foreach(var someString in arrayStrings)
{
    tasks.Add(Task.Factory.StartNew(() => DoSomething(someString));
}
Task.WaitAll(tasks.ToArray());

As you can see, the options are many. Depending on the problem at hand and how much control your solution requires, you may prefer one option over the other. For this particular problem I would prefer Parallel.ForEach as it most clearly and concisely expresses the intention of the code.

show/hide this revision's text 10 added 182 characters in body; added 94 characters in body; added 1 characters in body

To begin with

In addition to Barrier, you can use CountdownEvent like so: pointed out by Henk Holterman, .NET 4.0 provides whole bunch of other options (to use this in .NET 3.5 you need to download an extra DLL from Microsoft, more details here). Here's a quick survey:

First of all, you can use CountdownEvent, which works almost just like Barrier:

flagFinish = new CountdownEvent(2); <=== INITIALIZING COUNT
... queue processing to the thread pool ...
flagFinish.Wait();
...proceed with the rest of your logic...

...

void DoSomething(string someString){
    ... do some processing...
    flagFinish.Decrement(); <== WORKER THREADS SIGNAL WHEN DONE
}

According to Joe Duffy (the famous multithreading guru from Microsoft whose lecture at PDC 08 I learned this from) CountdownEvent was specifically created to simplify scatter/gather scenarios.

Now, in your case, when the list of objects to be processed is an array, a better way than queuing to the thread pool, is to use Parallel.For from the same library, like so:

Parallel.For(0, arrayStrings.Length - 1 , delegate(int i)
{
        DoSomething(arrayStrings(i));
});

Finally, checkout Parallel.ForEach for even higher-level semantics:

Parallel.ForEach<string>(arrayStrings, someString =>
{
    DoSomething(someString);
});

Behind the scenes, Parallel For and ForEach queue to a the new and improved thread pool and wait until all threads are done.

--- EDIT ---- Two more ways are described in this post on Parallels Extensions team blog.

One is to use Parallel.Invoke:

var actions = new List<Action>();
foreach(var someString in arrayStrings)
{
    actions.Add(() => DoSomething(someString));
}
Parallel.Invoke(actions.ToArray());

Another one is to use the new Task class:

var tasks = new List<Task>();
foreach(var someString in arrayStrings)
{
    tasks.Add(Task.Factory.StartNew(() => DoSomething(someString));
}
Task.WaitAll(tasks.ToArray());

As you can see, the options are many. Depending on the problem at hand and how much control your solution requires, you may prefer one option over the other. For this particular problem I would prefer Parallel.ForEach as it most clearly and concisely expresses the intention of the code.

show/hide this revision's text 9 added 394 characters in body; [made Community Wiki]
show/hide this revision's text 8 added 541 characters in body
show/hide this revision's text 7 deleted 1 characters in body; added 15 characters in body; added 107 characters in body
show/hide this revision's text 6 deleted 61 characters in body
show/hide this revision's text 5 deleted 1233 characters in body; deleted 3 characters in body; added 84 characters in body
show/hide this revision's text 4 added 347 characters in body; added 32 characters in body; added 1 characters in body
show/hide this revision's text 3 added 183 characters in body; added 75 characters in body
show/hide this revision's text 2 added 57 characters in body
show/hide this revision's text 1