vote up 2 vote down star

Hashtables have a syncroot property but generic dictionaries dont. If i have code that does this:

lock (hashtable.Syncroot) { .... }

How i do i replicate this if i am removing the hashtable and changing to generic dictionaries.

flag

5 Answers

vote up 7 vote down check

If you are going strictly for compatability then Bryan is correct. This is the best way to maintain your current semantics on top of a Dictionary.

Expanding on it though. The reason the SyncRoot property was not directly added to the generic dictionary is that it's a dangerous way to do synchronization. It's only slighly better than "lock(this)" which is very dangerous and prone to deadlocks. Here are a couple of links that speak to why this is bad.

link|flag
i.e., don't do this. – Will Nov 29 '08 at 20:07
2  
Completely agree. Yet I really hate it when people answer with "this is bad, don't do it" :). Most of the time people ask a question they are often stuck in a particular scenario and need to work through it. I try to give help on the problem and advice on why it's bad and how to avoid it. – JaredPar Nov 29 '08 at 20:28
vote up 3 vote down
var dictionary = new Dictionary<int, string>();

lock(((ICollection) dictionary).SyncRoot)
{
    // ...
}
link|flag
vote up 2 vote down

If the hashtable/dictionary isn't public, you could just lock the dictionary object itself.

link|flag
vote up 3 vote down

The new thinking behind SyncRoot is that it was a mistake in the original design. If the only thing to lock is the dictionary and it's private, you can lock it or another object that serves as the synchronization object. The latter technique is useful when the state you are protecting is more than just the dictionary.

// used as you would have used SyncRoot before
object _syncLock = new object();
Dictionary<string, int> numberMapper = new Dictionary<string, int>();

// in some method...
lock (_syncLock)
{
    // use the dictionary here.
}
link|flag
Do you have a source quote on that it was a mistake in the original design? – dalle Nov 29 '08 at 17:53
Brad Abrams and Krzysztof Cwalina (Program managers of .NET) says so: blogs.msdn.com/brada/archive/… – netadictos Nov 29 '08 at 18:14
Jeffrey Richter also covers this error in design in CLR Via C#. – Will Nov 29 '08 at 20:07
vote up 1 vote down

Here is a threadsafe generic dictionary implementation

http://devplanet.com/blogs/brianr/archive/2008/09/26/thread-safe-dictionary-in-net.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.