I was thrilled to see the new System.Collections.Concurrent
namespace in .Net 4.0, quite nice! I’ve seen ConcurrentDictionary
, ConcurrentQueue
, ConcurrentStack
, ConcurrentBag
and BlockingCollection
.
One thing that seems to be mysteriously missing is a ConcurrentList<T>
. Do I have to write that myself (or get it off the web 🙂 )?
Am I missing something obvious here?