Vraag : schrijf in een app.config

Hallo!

I heeft een winformtoepassing die één of andere Ids in app.config.

I moet opslaan vond dit:
http://www.codeproject.com /KB/cs/SystemConfiguration.aspx

But mijn configuratiedossier niet change.

What ik verkeerd heb gedaan?
" codeBody "
1:
2:
3:
4:
5:
6:
Configuration config = ConfigurationManager.OpenExeConfiguration (ConfigurationUserLevel.None);
            config.AppSettings.Settings.Remove (FAVORITE_CONFIG_FIELD); //FAVORITE_CONFIG_FIELD is een const die het correcte gebied in het configdossier bevat
            config.AppSettings.Settings.Add (FAVORITE_CONFIG_FIELD, sb.ToString ()); //I hebben gecontroleerd, geeft sb.ToString () een verschillende waarde dan daadwerkelijk
config. Sparen (ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection („appSettings“);
//my app.config heeft geen verandering

Antwoord : schrijf in een app.config

Ik wijzigde me
config. Sparen (ConfigurationSaveMode.Modified);

aan
config. Sparen (ConfigurationSaveMode.Full);
En het werkt
Andere oplossingen  
 
programming4us programming4us