When you create a configuration object for managing .net configuration files, you need to close the files.
I have an application with several .dll components. Should I use global configuration to avoid writing changes made by other .dlls to the same configuration file.
Public Shared config As System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None) ....do config entries here. config.save
I know that you need to close / delete this configuration before making changes to the same configuration file from another module.
Brian source share