2015-01-15 4 views

ответ

0

ли это в вашем файле app.config

<configuration> 
    <configSections> 
     <section name="customSection" type="ABC" /> 
    </configSections> 
<customSection configSource="custom.config"></customSection> //Your own file name is the configSource 

Создайте еще один файл с именем custom.config. Внутри этого файла:

<customSection> 
    //Your config here 
    </customSection> 
Смежные вопросы