本文介绍了在C#中的Java的ConcurrentHashMap的等效?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有什么?
推荐答案
有是实现关联数组一个泛型类Dictionary(又名哈希表)。最近MS出来的ConcurrentDictionary类:这可能是你想要的。它的.NET 4+虽然。 :(
There is a generic Dictionary class for implementing associative arrays (aka hashtables). Recently MS came out with the ConcurrentDictionary class: http://msdn.microsoft.com/en-us/library/dd287191.aspx which is probably what you want. It's .Net 4+ though. :(
这篇关于在C#中的Java的ConcurrentHashMap的等效?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!