Tagged Questions

9
votes
6answers
970 views

How might a class like .NET's ConcurrentBag<T> be implemented?

I find myself very intrigued by the existence of a ConcurrentBag<T> class in the upcoming .NET 4.0 framework: Bags are useful for storing objects when ordering doesn't matter, and unlike ...