您是否需要“关闭” .net配置
当您创建配置对象来管理.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您不需要关闭/处置。 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.