如何在c#中的app.config中读取自定义配置部分

时间:2011-12-27 10:16:47

标签: c# app-config configsection

我想阅读app.config中的以下自定义部分:

<StartupFolders>    
   <Folders name="a">
      <add folderType="Inst" path="c:\foo" />
      <add folderType="Prof" path="C:\foo1" />      
   </Folders>
   <Folders name="b">
      <add folderType="Inst" path="c:\foo" />
      <add folderType="Prof" path="C:\foo1" />      
   </Folders> 
</StartupFolders>

我找到this link,但它没有说明多个<Folders>标记。请帮帮忙?

1 个答案:

答案 0 :(得分:2)

您好您可以访问此类自定义栏目

CustomConfigClass section = (CustomConfigClass)ConfigurationManager.GetSection("StartupFolders");

希望它对你有所帮助。