There are 3 threads. Each of them works (reads, writes) with its own set of dictionary keys. So keys are mutually exclusive for different threads. There are also multiple threads which only read data.
I want to make my code multithreadable, therefor i need to change a Dictionary into a ConcurrentDictionary. I read about the ConcurrentDictionar开发者_Go百科y, checked some example, but still I need a
I couldn\'t find enough information on ConcurrentDictionary types, so I thought I\'d ask about it here.