Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a C# class that provides map with weak keys or/and weak values? Or at least WeakHashMap like functionality.

share|improve this question

2 Answers

up vote 7 down vote accepted

The closest platform equivalent is probably a Dictionary<K, WeakReference<V>>. That is, it's just a regular dictionary, but with the values being weak references.

share|improve this answer
You mixed something up, the keys have to be weak not the values, sorry just reread the question. – josefx Jan 17 '10 at 16:10
2  
It says "weak keys or/and weak values". Weak values are probably preferable to weak keys -- you don't want a weak key and a strong value, because then you don't have a way to get your value back if your key expires! – John Feminella Jan 17 '10 at 16:13
1  
Actually, weak keys are also very useful. For instance in caches. But they are harder to implement with just WeakReferences and Dictionary. – Daniel Sperry Jan 18 '10 at 17:40
That's very true. If this was a cache, though, I don't think a WeakHashMap is necessarily what you want -- there are some better alternatives. – John Feminella Jan 18 '10 at 17:57
For my current problem your solution is fine. I made a Dictionary<int, WeakReference>, and I might iterate over the key pairs from time to time to prune the collected values. However if I were more concerned with performance or concurrency this pruning would not be a such a good idea. WeakHashMap like (weak keys) also would not work. I asked the question trying to find the gold mine: some .net namespace with all nice gc aware collections and classes that I might need. In my previous project we built a STM system in java, there almost every possible combination of references were necessary. – Daniel Sperry Jan 19 '10 at 11:33
show 1 more comment

In .Net 3.5 and below, there is no such structure available. However I wrote up one for a side project and posted the code at the following location.

Starting .NET 4.0, there is a structure available called ConditionalWeakTable in the Runtime.CompilerServices namespace that also does the trick.

share|improve this answer
I recently came across this blog post It states "I'll save [compaction] for next time". I'm interested how compaction would be done, but I could not find "next time" :-( is it available anywhere? Here is what I came up with on my own: stackoverflow.com/questions/2047591 – dtb Jan 17 '10 at 16:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.