How to read custom config section in app.config in c#
我想从app.config中阅读以下自定义部分:
1 2 3 4 5 6 7 8 9 10 | <StartupFolders> <Folders name="a"> </Folders> <Folders name="b"> </Folders> </StartupFolders> |
我找到了这个链接,但它没有表示多个
嗨,您可以访问这样的自定义分区
1 | CustomConfigClass section = (CustomConfigClass)ConfigurationManager.GetSection("StartupFolders"); |
希望对你有帮助。