這裏我有兩個config
文件,我需要在C#
切換
例如,這些config
文件之間切換:
app.config
address.config
我需要從app.config
更改爲address.config
在r取消數據的時間。
我嘗試下面的代碼:
System.Configuration.Configuration config
= ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.File = runtimeconfigfile;
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings");
這個請大家幫忙。
爲什麼?爲什麼你需要在執行過程中改變配置? – Oded
您是否可以不加載「address.config」作爲xml文件並在不卸載app.config的情況下讀取所需的節點? – Bazzz
我需要來自該配置文件的一些數據。 – Praveen