app.config 单键多个值

发布于 2024-10-17 10:53:52 字数 520 浏览 0 评论 0原文

是否可以有这样的 app.config 文件:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="someKey" value="valueHere"/>
    <add key="anotherKey" value="valueHere"/>
    <add key="listOfValues">
        <value1/>
        ...
        <valueN/>
    </add>
  </appSettings>
</configuration>

我的意思是,我想在配置文件中有一个返回值列表的键。如何做到这一点? 认为这很简单,但我只是找不到任何示例

UPD :也许我应该用分号分隔多个值,然后将它们分开?...但我认为这不是一个好主意...

is it possible to have app.config file like this :

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="someKey" value="valueHere"/>
    <add key="anotherKey" value="valueHere"/>
    <add key="listOfValues">
        <value1/>
        ...
        <valueN/>
    </add>
  </appSettings>
</configuration>

I mean, I want to have a key in config file that returns a list of values.How to do it?
Think it's pretty easy, but I just can't find any examples

UPD : maybe I should put multiple values separated by semicolon and then just split them?.. But I think it is not very good idea...

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

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

发布评论

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

评论(2

昔梦 2024-10-24 10:53:52

我不认为标准的键/值对配置设置可以做到这一点,但是通过更多的编码,您可以通过 自定义配置部分

I don't think the standard key/value pair config settings can do it, but with a little more coding you can have all the configuration XML goodness you want with a custom config section.

长不大的小祸害 2024-10-24 10:53:52

不知道你所问的是否可行。但我所做的是使用“;”之类的分隔符连接值例如。

所以你有类似的东西:

<add key="runningDays" value="Mon;Tue;Wed;Thu;Fri"/>

然后我使用分隔符从配置中分割值字符串,以获取给定键的可能值列表。

Don't know if what you're asking is possible. But what I do is I concatenate values using a separator like ";" for instance.

So you have something like:

<add key="runningDays" value="Mon;Tue;Wed;Thu;Fri"/>

Then I split the value string from config using the separator to get the list of possible values for the given key.

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