Browse by Tags
Sorry, but there are no more tags available to filter with.
- Hashtable and Dictionary thread safety considerations
-
Let’s start with the basics: System.Collections.Hashtable is multiple-reader, single-writer threadsafe. System.Collections.Generic.Dictionary<K,V> has no thread safety guarantees. Consider a class that has a Dictionary member, and assume that multiple Read More...