本文介绍了将数组添加到web.config中的键的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道是否有可能将数组作为键中的值...示例
I was wondering if its possible to put an array as a value in a key...example
<add key="email" value="emails["[email protected], [email protected]"] />
语法会起作用吗?
推荐答案
使用ConfigurationManager.AppSettings
只能检索标量值.例如,如果您用分号分隔电子邮件,则可以执行以下操作:
With ConfigurationManager.AppSettings
you can only retrieve scalar values. For your example, if you seperate your emails with a semicolon, you can do:
string[] emails = ConfigurationManager.AppSettings["email"].Split(';');
与web.config
with the web.config
<add key="email" value="[email protected];[email protected]" />
这篇关于将数组添加到web.config中的键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!