vote up 1 vote down star
1

or should you always create some other lock object . .

flag

4 Answers

vote up 4 vote down check

Yes, cast it to an IDictionary and lock on .SyncRoot:

Generic.Dictionary<int, int> dic = new Generic.Dictionary<int, int>();

lock (((IDictionary)dic).SyncRoot)
{
    // code
}

Thanks to this source for the info.

Of course a thread-safe dictionary would be nice, too, as others have suggested.

link|flag
vote up 1 vote down

Hi,

You should take a look at the Thread Safe Dictionary Implementation made by Brian Rudolph which is nativly Thread Safe.

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

link|flag
vote up 1 vote down

You can lock on any object that you wish (except value-types). It's recommended though to lock on the .SyncRoot object.

link|flag
vote up 0 vote down

Check this question.

Also check this question:

What’s the best way of implementing a thread-safe Dictionary in .NET?

link|flag

Your Answer

Get an OpenID
or

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