开发者

ObjectStore in C#

开发者 https://www.devze.com 2023-03-13 18:29 出处:网络
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.

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?

0

精彩评论

暂无评论...
验证码 换一张
取 消