Configuration config = ConfigurationManager.OpenExeConfiguration (ConfigurationUserLevel.None);
config.AppSettings.Settings.Remove (FAVORITE_CONFIG_FIELD); //FAVORITE_CONFIG_FIELD być const który zawierać the poprawny pole w the config kartoteka
config.AppSettings.Settings.Add (FAVORITE_CONFIG_FIELD, sb.ToString ()); //I sprawdzać, sb.ToString () dawać różny wartość the faktyczny
config. Save (ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection ("appSettings");
//my app.config mieć zmiana
|