从app.config c#中读取所有键值

本文关键字:键值 读取 app config | 更新日期: 2023-09-27 17:51:18

嗨,我有以下app.config文件

<?xml version="1.0" encoding="utf-8"?>
 <configuration>
<appSettings>
<add key="DayTime" value="08-20" />
<add key="NightTime" value="20-08" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
<add key="GridMode" value="1"/> 
</appSettings>

我需要一次性读取所有密钥,并将其存储在类似Dictionary的位置。

我尝试了以下代码,但给了我null

Cannot convert Keyvalueinternalcollection to hashtable 除外

var section = ConfigurationManager.GetSection("appSettings") as Hashtable;

如何读取所有键及其值?

从app.config c#中读取所有键值

哈希表版本。

Hashtable table = new Hashtable((from key in System.Configuration.ConfigurationManager.AppSettings.Keys.Cast<string>()
                                 let value= System.Configuration.ConfigurationManager.AppSettings[key]
                                 select new { key, value }).ToDictionary(x => x.key, x => x.value));

对其他答案的评论

System.Configuration.ConfigurationManager.AppSettings是预定义的"appSettings"部分,请使用它。

不要强制转换为Hashtable,而是转换为IEnumerable

var section = ConfigurationManager.GetSection("appSettings");
foreach (var kvp in section as IEnumerable)
{
    //TODO
}

我认为你可以这样做:

var loc=(NameValueCollection)ConfigurationSettings.GetSection("appSettings");
var dic=new Dictionary<string,string>();
foreach (var element in loc.AllKeys)
{
    dic.Add(element, loc[k]);
}
var section = ConfigurationManager.GetSection("appSettings")

应该足够了。