Answers for ".net open config file by name"

C#
0

.net open config file by name

ExeConfigurationFileMap configMap = new ExeConfigurationFileMap();
configMap.ExeConfigFilename = @"d:\test\justAConfigFile.config.whateverYouLikeExtension";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(configMap, ConfigurationUserLevel.None);
Posted by: Guest on June-14-2021

C# Answers by Framework

Browse Popular Code Answers by Language