仅在 ini 文件中存储值
我知道 .ini 在 .net 世界中并不流行。对于我尝试使用它们,我提前表示歉意。
我有一个 ini 文件,它以典型的键值对方式存储所有应用程序设置。现在我想向其中添加一些 Richtextbox 的内容。 Richtextbox 保存每行中文件夹的路径。问题是我希望 ini 文件中没有键,而只有值。像这样的事情:
[Folders]
c:/
d:/
e:/my downloads
基本上想知道如何在 ini 文件中仅存储值(没有键)。不确定这是否可以或应该这样做。
谢谢
I know .ini are not popular in the .net world. I apologize in advance in my attempt to use them.
I have an ini file that stores all app settings in a typical key value pair manner. Now I want to add to it , the contents of a few richtextboxes . The richtextbox holds paths to folders in each line. The thing is I want there to be no key ,but only values in the ini file. Something like this:
[Folders]
c:/
d:/
e:/my downloads
Basically want to know how to store only values in an ini file ( no keys). Not sure if this can or should be done.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不简单地以Folder1、Folder2、FolderN 的形式给他们密钥呢?
这取决于您的实施。您可以简单地迭代该部分中的所有可用键并检索值。
Why not simply give them keys in the form of Folder1, Folder2, FolderN?
It depends on your implementation. You could simply iterate over all available keys in the section and retrive the values.
这可以使用 Cinchoo 框架 来完成。
对于下面的示例 (C:\Temp\Test.Ini) ini 文件,
使用 Cinchoo 框架,您可以按如下方式迭代它们
This can done using Cinchoo framework.
For a sample (C:\Temp\Test.Ini) ini file below,
Using Cinchoo framework, you can iterate through them as below