配置文件读取

发布于 2024-11-18 03:49:24 字数 149 浏览 4 评论 0原文

我正在尝试从 .config 文件中检索一些信息。我需要搜索特定标签并获取这些标签中的属性。例如,在应用程序标签中,我需要获取属性路径。我不需要 .config 文件中的任何其他信息。我刚刚浏览 XmlTextReader 但后来意识到我需要一个配置文件,但不知道这是否是正确的方法。

I am trying to retrieve some information from a .config file. I need to search for specific tags and get the attributes in those tags. For example in application tag i need to get the attribute path. I don't need any other information from the .config file. I was just going through XmlTextReader but then realised i need a config file and don't know if it is the right way.

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

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

发布评论

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

评论(2

卸妝后依然美 2024-11-25 03:49:24

正确的方法是使用 ConfigurationElement 后代。对于 app.config / web.config 中的每个部分,您都有一个特定的类来管理该部分。
如果需要修改app.config/web.config文件,可以使用ConfigurationManager 类。

The right way is using a ConfigurationElement descendant. For each section in app.config / web.config you have a specific class to manage that section.
If you need to modify the app.config / web.config file, you can use the ConfigurationManager class.

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