Thread-safe generic collections, containers and dictionaries in .NET
It is very common with threaded applications to need to share data between threads, often in the form of dictionaries, lists, stacks, etc. However, the standard containers (generic or otherwise) in .NET are not thread-safeāif you just, say, reference a …
Thread-safe generic collections, containers and dictionaries in .NET Read more »