Skip to content

Instantly share code, notes, and snippets.

@willm
Last active October 11, 2015 13:27
Show Gist options
  • Save willm/3865499 to your computer and use it in GitHub Desktop.
Save willm/3865499 to your computer and use it in GitHub Desktop.
Stubing Config Values
static void StubKeyInConfig(string appSettingsKey, string appSettingsValue)
{
var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings.Add(appSettingsKey, appSettingsValue);
config.Save();
ConfigurationManager.RefreshSection("appSettings");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment