Search Results

2
votes

When is multi-threading not a good idea?

To paraphrase an old quote: A programmer had a problem. He thought, "I know, I'll use threads." Now the programmer has two problems. (Often attributed to JWZ, but it seems to predate his use of …
0
votes

What is the best way to have synchronized a collection of objects between various threads in .Net?

A number of the collection classes in .Net have built in support for synchronizing and making access from multiple threads safe. For example (in C++/CLR): Collections::Queue ^ …