Write values in app.config file

后端 未结 10 1005
生来不讨喜
生来不讨喜 2020-11-29 01:46

can anyone please help me how can I set/store values in the app.config file using c#, is it possible at all?

10条回答
  •  时光说笑
    2020-11-29 02:12

    private static string GetSetting(string key)
    {
        return ConfigurationManager.AppSettings[key];
    }
    
    private static void SetSetting(string key, string value)
    {
        Configuration configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
        configuration.AppSettings.Settings[key].Value = value;
        configuration.Save(ConfigurationSaveMode.Full, true);
        ConfigurationManager.RefreshSection("appSettings");
    }
    

提交回复
热议问题