• 保存配置文件的appSetting


            /// <summary>
            /// 保存appSetting
            /// </summary>
            /// <param name="key">appSetting的KEY值</param>
            /// <param name="value">appSetting的Value值</param>
            private static void SetAppSetting(string key, string value)
            {
                // 创建配置文件对象
                System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
    
                if (config.AppSettings.Settings[key] != null)
                {
                    // 修改
                    config.AppSettings.Settings[key].Value = value;
                }
                else
                {
                    // 添加
                    AppSettingsSection ass = (AppSettingsSection)config.GetSection("appSettings");
                    ass.Settings.Add(key, value);
                }
    
                // 保存修改
                config.Save(ConfigurationSaveMode.Modified);
    
                // 强制重新载入配置文件的连接配置节
                ConfigurationManager.RefreshSection("appSettings");
            }
  • 相关阅读:
    迁移学习
    GAN
    PCA
    LSTM
    hdu 1754 I Hate It 线段树
    hdu 4292 Food 最大流
    hdu 2222 Keywords Search AC自动机
    hdu 3572 Task Schedule hdu 2883 kebab 最大流
    poj 1966 Cable TV Network 点连通度
    hdu 2236 匹配
  • 原文地址:https://www.cnblogs.com/yuwuji/p/5919054.html
Copyright © 2020-2023  润新知