无法从app.config中读取部分

时间:2016-02-07 21:10:52

标签: c# .net app-config configsection

我有一个简单的配置部分如下

<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");

但我总是无效。我尝试了一切,但无法弄清楚发生了什么。有人可以帮帮我吗?

谢谢,

0 个答案:

没有答案