在 C# 应用程序中添加自定义配置文件
是否可以创建自定义配置文件(app.config 除外) 可以由 System.Configuration 命名空间中的类处理吗?
我看过大量讨论自定义部分的文章(在 app.config 文件)但我想制作一个全新的配置文件。
有没有涵盖这个主题的不错的文档?
谢谢
Is it possible to create a custom configuration file (other than app.config)
that can be processed by classes in the System.Configuration namespace?
I have seen a ton of articles that talk about custom sections (inside the
app.config file) but I would like to make an entirely new config file.
Is there any decent documentation that covers this topic?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有说明您想要通过拥有单独的文件来实现什么,但是您可以执行一些不同的操作。
如果您想要“模块化”您的配置,您可以使用
configSource
属性:您还可以通过调用
ConfigurationManager.OpenExeConfiguration
。You do not state what you want to achieve by having a separate file, but there are a couple of different things you can do.
If you want to "modularize" you configuration, you can break out certain config sections to separate files, using the
configSource
attribute:You can also open a specific configuration file by calling
ConfigurationManager.OpenExeConfiguration
.