C#动态类属性问题
我有一个关于设计处理大量(10K+)动态属性的类的最有效方法的问题。属性仅包含布尔值或双值类型。
我已经想到了几个答案,但不确定我是否走上正轨。
- 类具有一个传递散列表的属性,该
- 属性在运行时使用表示父节点的属性创建类,可用于检索具有子节点属性的子类。
I have a question regarding the most efficient way to design a class that handles a large number (10K+) of dynamic properties. Properties only hold boolean or double value types.
I've thought of a couples of answers but not sure if I am on track.
- Class has one property that passes a hashtable
- Create class at runtime with properties that represent parent nodes, that can be used to retrieve child classes with child node properties.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您实际上并不是在谈论属性,而是在谈论名称/值对的集合。 《词典》涵盖了这一点班级。 .NET 4.0 中提供的 ExpandoObject 类也许值得一提。
I trust that you're not actually talking about properties but a collection of name-value pairs. That's covered by the Dictionary<> class. The ExpandoObject class, available in .NET 4.0 is perhaps worth mentioning.