什么是java hashbag集合的.net等价物,这个集合只存储一次类似的项目,但也存储项目的出现次数?
答案 0 :(得分:0)
另请参阅:Duplicate keys in .NET dictionaries? bag的另一个常见名称是multiset,另请参阅:Are there any implementations of multiset for .Net?
通过这些链接,我找到了Wintellect的Power Collections bag实现。从它的来源:
Bag<T> is a collection that contains items of type T.
Unlike a Set, duplicate items (items that compare equal to each other) are allowed in an
Bag.
我自己不是.net用户,所以我不知道这个库是否太旧而无法使用。希望它有所帮助!