ObjectStore in C#
Is there an ObjectStore implmentation for csharp that allows be to generate string handles for my own objects, lookup these objects later on on from the string handle. I can see there are impl开发者_开发百科ementations for C++, but in dotnet we have a garbage collector! Lars
You mean like a Dictionary<TKey, TValue>
(or more specifically for your case a Dictionary<string, SomeObjectType>
)? Or more like ObjectCache?
精彩评论