App.config c#中需要嵌套的自定义处理程序

时间:2012-12-14 17:13:55

标签: c# asp.net .net nested app-config

  

可能重复:
  How to create custom config section in app.config?

我正在努力从app.config文件中读取自定义部分。有人可以帮助我。我在app.config中有一个嵌套的自定义部分,最多6个级别。

我的App.config

<configuration>
   <Parent>
       <mySystem>
           <mySystemContainers>
               <mySystemContainer name="one" >
                    <mySystems> 
                        <clear/>
                            <System Name="name" GroupName="Group1"/>
                            <System Name="name2" GroupName="Group1"/> 
                     </mySystems>
              </mySystemContainer> 
        </mySystem> 
     </Parent>
 </configuration>

0 个答案:

没有答案