Я пытался работать с разделами app.config в этом примере:
http://msdn.microsoft.com/en-us/library/system.configuration.configurationcollectionattribute.aspx#Y2391
и это дает мне следующее исключение:
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)
это файл конфигурации -
<?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>
Я не понимаю, почему .... кто-нибудь может помочь?спасибо.