Good implementation of weak dictionary in .Net
- by Konstantin
Where can I find good implementation of IDictionary which uses weak references inside?
Dictionary should be holding only weak references to values and eventually clean up itself of dead references.
Or should I just write it myself?