app.config 创建和读取部分的问题

发布于 2024-12-03 07:58:15 字数 1079 浏览 2 评论 0原文

我一直在尝试通过以下示例使用 app.config 部分:

http://msdn.microsoft.com/en-us/library/system.configuration.configurationcollectionattribute.aspx#Y2391

并给了我下一个例外:

为 MyUrls 创建配置节处理程序时发生错误: 无法加载文件或程序集“ConfigurationCollectionAttribute,Version=1.0.0.0,Culture=neutral,PublicKeyToken=null”或其依赖项之一。系统找不到指定的文件。 (E:\Projects\AppConfigSectionsTesting\AppConfigSectionsTesting\bin\Debug\AppConfigSectionsTesting.vshost.exe.Config line 4)

这是配置文件 -

   <?xml version="1.0" encoding="utf-8" ?>
<configuration>

 <configSections>
   <section name="MyFolders" type="FoldersSection, 
      ConfigurationCollectionAttribute, Version=1.0.0.0, Culture=neutral,   PublicKeyToken=null" />
</configSections>
<MyFolders>
   <Folders>
    <add Path ="D:\\RUN"/>
</Folders>
</MyFolders>

 </configuration>

我不明白为什么......任何人都可以帮忙吗? 谢谢。

I have been trying to work with app.config sections by this example:

http://msdn.microsoft.com/en-us/library/system.configuration.configurationcollectionattribute.aspx#Y2391

and its giving me the next exception:

An error occurred creating the configuration section handler for MyUrls:
Could not load file or assembly 'ConfigurationCollectionAttribute, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. (E:\Projects\AppConfigSectionsTesting\AppConfigSectionsTesting\bin\Debug\AppConfigSectionsTesting.vshost.exe.Config line 4)

this is the config file -

   <?xml version="1.0" encoding="utf-8" ?>
<configuration>

 <configSections>
   <section name="MyFolders" type="FoldersSection, 
      ConfigurationCollectionAttribute, Version=1.0.0.0, Culture=neutral,   PublicKeyToken=null" />
</configSections>
<MyFolders>
   <Folders>
    <add Path ="D:\\RUN"/>
</Folders>
</MyFolders>

 </configuration>

i dont understand why.... can anyone help?
thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

左耳近心 2024-12-10 07:58:15

在您的 app.config 中,检查您是否拥有类 ConfigurationCollectionAttribute 的完整命名空间

,例如:

<configSections>
    <section name="configSectionName"
             type="Company.Namespace.ConfigSection, Company.Namespace" />
</configSections>

In your app.config, check that you've got the full namespace to the class ConfigurationCollectionAttribute

For example:

<configSections>
    <section name="configSectionName"
             type="Company.Namespace.ConfigSection, Company.Namespace" />
</configSections>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文