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 implementations for C++, but in dotnet we have a garbage collector!
Lars
Is there an ObjectStore implmentation for csharp that allows be to generate string handles
Share
You mean like a
Dictionary<TKey, TValue>(or more specifically for your case aDictionary<string, SomeObjectType>)? Or more like ObjectCache?