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