读取 WPF 项目中的配置文件

发布于 2024-11-06 13:44:38 字数 144 浏览 0 评论 0原文

我有一个 WPF 应用程序。此应用程序应读取 web.config 文件(来自 asp.net webforms 项目)和 myCompany.config 文件。 我该怎么做?有没有简单的方法来处理这个问题?

任何帮助将不胜感激。

谢谢!

I have a WPF application. This application should read a web.config file (from a asp.net webforms project) and a myCompany.config file.
How can I do this? Is there a easy way to handle this?

Any help would be appreciated.

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

烛影斜 2024-11-13 13:44:38

所以如果我理解正确的话,你想读取存储在特定路径中的配置文件吗?

技巧如下:

Configuration _userConfig;
String configFilePath = "Your path here";

//Getting the user configuration object:
//Mapping the appropriate path:
ExeConfigurationFileMap configFileMap = new ExeConfigurationFileMap();
configFileMap.ExeConfigFilename = configFilePath;
_userConfig = ConfigurationManager.OpenMappedExeConfiguration(configFileMap, ConfigurationUserLevel.None);

就这样,_userConfig 将包含您指定的路径中的详细信息:)

So if I understood correctly, you want to read config files which are stored in a specific path?

Here is the trick:

Configuration _userConfig;
String configFilePath = "Your path here";

//Getting the user configuration object:
//Mapping the appropriate path:
ExeConfigurationFileMap configFileMap = new ExeConfigurationFileMap();
configFileMap.ExeConfigFilename = configFilePath;
_userConfig = ConfigurationManager.OpenMappedExeConfiguration(configFileMap, ConfigurationUserLevel.None);

And there you go, _userConfig will contain the details in the path you specified :)

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