您是否需要“关闭” .net配置

发布于 2024-11-10 16:44:17 字数 357 浏览 6 评论 0原文

当您创建配置对象来管理.net配置文件时,是否需要关闭这些文件。

我有一个包含多个 .dll 组件的应用程序。我是否必须使用全局配置来避免继续将其他 .dll 所做的更改写入同一配置文件。

Public Shared config As System.Configuration.Configuration 
config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None)
....do config entries here.
config.save

我是否知道在从另一个模块更改同一配置文件之前需要关闭/处置此配置。

When you create a configuration object to manage .net configuration files, do you need to close the files.

I have an application with several .dll components. Do I have to use a global config to avoid keep writing over changes being done by other .dll's to the same configuration file.

Public Shared config As System.Configuration.Configuration 
config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None)
....do config entries here.
config.save

Do I know need to close/dispose this config before making changes to the same configuration file from another module.

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

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

发布评论

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

评论(1

万水千山粽是情ミ 2024-11-17 16:44:17

不,您不需要关闭/处置。 Configuration 类由 OpenExeConfiguration 静态方法未实现 IDisposable 也没有任何 Close 方法,因此您的代码没有问题。

No, you don't need to Close/Dispose. The Configuration class returned by the OpenExeConfiguration static method doesn't implement IDisposable nor it has any Close method so your code is fine.

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