读取 WPF 项目中的配置文件
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您需要使用configurationmanager
http:// msdn.microsoft.com/en-us/library/aa719887%28v=vs.71%29.aspx
http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.aspx
Sounds like you need to use configurationmanager
http://msdn.microsoft.com/en-us/library/aa719887%28v=vs.71%29.aspx
http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.aspx
所以如果我理解正确的话,你想读取存储在特定路径中的配置文件吗?
技巧如下:
就这样,
_userConfig
将包含您指定的路径中的详细信息:)So if I understood correctly, you want to read config files which are stored in a specific path?
Here is the trick:
And there you go,
_userConfig
will contain the details in the path you specified :)