M
Mark Ingram
Hi, whats the correct way of opening up a different applications
configuration file?
i.e. i want to open someotherapp.exe.config and read the settings
contained in "applicationSettings".
Ive done the following code, but i dont if its the correct method
(doesnt take any form of security into account):
Configuration config = ConfigurationManager.OpenExeConfiguration(path);
ConfigurationSectionGroup configSectionGroup =
config.GetSectionGroup("applicationSettings");
Im using .NET 2.0.
Thanks
configuration file?
i.e. i want to open someotherapp.exe.config and read the settings
contained in "applicationSettings".
Ive done the following code, but i dont if its the correct method
(doesnt take any form of security into account):
Configuration config = ConfigurationManager.OpenExeConfiguration(path);
ConfigurationSectionGroup configSectionGroup =
config.GetSectionGroup("applicationSettings");
Im using .NET 2.0.
Thanks