Browse by Tags

All Tags » Threading » Dictionary » IDisposable » C# (RSS)
Sorry, but there are no more tags available to filter with.

Thread Safe Dictionary in .NET with ReaderWriterLockSlim

Since MS has decided to not include a thread-safe dictionary in the .NET framework, many of us have been forced to implement our own. What MS has done now with .NET 3.5 is given us a newer locking mechanism which makes this task easier. Previously, we...