在 C# 应用程序中添加自定义配置文件

发布于 2024-07-25 08:18:03 字数 176 浏览 5 评论 0原文

是否可以创建自定义配置文件(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇柔作态 2024-08-01 08:18:03

您没有说明您想要通过拥有单独的文件来实现什么,但是您可以执行一些不同的操作。

如果您想要“模块化”您的配置,您可以使用 configSource 属性:

// point out a file containing the connectionStrings config section
<connectionStrings configSource="connections.config"></connectionStrings>

您还可以通过调用 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:

// point out a file containing the connectionStrings config section
<connectionStrings configSource="connections.config"></connectionStrings>

You can also open a specific configuration file by calling ConfigurationManager.OpenExeConfiguration.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文