5

我想阅读 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>

我找到了这个链接,但它没有说多个<Folders>标签。请帮忙?

4

1 回答 1

2

嗨,您可以像这样访问自定义部分

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

希望它可以帮助你。

于 2011-12-29T09:44:26.557 回答