Question

Or should you always create some other lock object?

Was it helpful?

Solution

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.

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top