注释文档作为数组中的对象
我的问题。
我让我的 C# 应用程序打开一个节点数据库。所以现在我可以打开我的笔记数据库并获取我想要的属性值。现在每个音符只需要 4 个值。
将这些项目的价值存储在一起以便我可以在需要时参考它们的最佳方式是什么?数组列表?
Chaingin my question.
I have my C# application open a nodes data base. So right now I can open my notes data base and grab the properity value that I want. Now there is only 4 values I need for each note.
What is the best way of storeing these items value together so I can reference them when i want? ArrayList?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不熟悉 Lotus Notes 文档格式,但如果您无法将文档本身存储在数组中并仅以这种方式访问属性,您可以创建一个存储文档属性的类,然后创建一个
List;
包含您创建的类实例的列表。I am not familiar with Lotus Notes document format but if you cannot store the documents themselves in an array and just access the properties that way, you could create a class that stores the properties for a document and then create a
List<t>
that holds the list of class instances you created.