Change in AppSettings needs restart my Application how can I avoid?

前端 未结 4 1722
野趣味
野趣味 2021-02-08 13:09

I\'m using C# .NET 2.0 Windows Application.

and I\'m using app.config for my Application Settings.

but change in AppSettings doesn\'t reflected runtime, it Needs

4条回答
  •  你的背包
    2021-02-08 13:44

    ConfigurationManager.RefreshSection("appSettings");
    

    works!!

    But be careful that if we are in debug mode, the configuration file can be called xxxxx.vshost.exe.config, where xxxxx is your project name.

提交回复
热议问题