C#动态类属性问题

发布于 2024-09-30 21:10:19 字数 170 浏览 1 评论 0原文

我有一个关于设计处理大量(10K+)动态属性的类的最有效方法的问题。属性仅包含布尔值或双值类型。

我已经想到了几个答案,但不确定我是否走上正轨。

  1. 类具有一个传递散列表的属性,该
  2. 属性在运行时使用表示父节点的属性创建类,可用于检索具有子节点属性的子类。

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.

  1. Class has one property that passes a hashtable
  2. Create class at runtime with properties that represent parent nodes, that can be used to retrieve child classes with child node properties.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月牙弯弯 2024-10-07 21:10:19

我相信您实际上并不是在谈论属性,而是在谈论名称/值对的集合。 《词典》涵盖了这一点班级。 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文