无法将新部分添加到app.config中

问题描述 投票:0回答:2

每次我尝试在 app.config 中添加一个非常基本的部分时,都会收到以下错误:

Configuration system failed to initialize.

我看过各种文章,但到目前为止没有一篇有帮助。 有什么想法出了什么问题吗?

编辑:

  <configSections>
    <section name="Test" type="TestType"/>
  </configSections>

  <Test>  

  </Test>
c# web-config config app-config
2个回答
4
投票

您定义配置节处理程序吗?这是一个教程:

http://support.microsoft.com/kb/309045

编辑:(根据您更新的问题) 我建议使用完全限定的程序集名称来指定类型。


1
投票

使用 .NET 2.0/Enterprise 读取/写入 App.config 链接

© www.soinside.com 2019 - 2024. All rights reserved.