To recap for those .net gurus who might not know the Java api:
ConcurrentHashMap in Java has atomic methods (i.e. require no external locking) for common Map modification operations such as:
putIfAbsent(K key, V value)
remove(Object key, Object value)
replace(K key, V value)
It also allows iteration over the keyset without locking (it takes a copy at the start of iteration) and get() operations can generally be interleaved with calls to put() without blocking (it uses fine grained lock striping iirc).
Anyway, my question is does .net have an equivalent Dictionary implementation?
I guess more generally, I'd be keen to know if .net has a more general set of thread safe collection libraries. Or concurrency utlities in general - equivalent to doug Lea's java.util.concurrent libraries.
