我有一个简单的配置部分如下
<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");
但我总是无效。我尝试了一切,但无法弄清楚发生了什么。有人可以帮帮我吗?
谢谢,