Frage : in ein app.config schreiben

Hallo!

I haben eine winform Anwendung, das einige Ids in das app.config.

I speichern müssen fand dieses:
http://www.codeproject.com /KB/cs/SystemConfiguration.aspx

But, das meine Konfigurationsakte hat nicht change.

What ich getan falsch?
1:
2:
3:
4:
5:
6:
Configuration Config = ConfigurationManager.OpenExeConfiguration (ConfigurationUserLevel.None);
            config.AppSettings.Settings.Remove (FAVORITE_CONFIG_FIELD); //FAVORITE_CONFIG_FIELD ist ein const, das das korrekte Feld in der Configakte enthält
            config.AppSettings.Settings.Add (FAVORITE_CONFIG_FIELD, sb.ToString ()); //I haben überprüft, sb.ToString () gibt einen anderen Wert als das tatsächlich
Config. Speichern (ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection („appSettings“);
//my app.config hat nicht Änderung

Antwort : in ein app.config schreiben

Ich änderte
Config. Speichern (ConfigurationSaveMode.Modified);

zu
Config. Speichern (ConfigurationSaveMode.Full);
Und es funktioniert
Weitere Lösungen  
 
programming4us programming4us