我有一个简单的配置部分如下
<configuration>
<configSections>
<section name="Test" type="System.Configuration.DictionarySectionHandler"/>
<section name="Test1" type="System.Configuration.DictionarySectionHandler"/>
</configSections>
<Test>
<add key="foo" value="1"/>
</Test>
<Test1>
<add key="bar" value="20"/>
</Test1>
</configuration>
我从代码中访问它
var blah = ConfigurationManager.GetSection("Test");
但我总是得到空值。我尝试了一切,但无法弄清楚发生了什么。有人可以帮我吗?
谢谢,