以下是app.config或web.config的定義,定義了一個參數,鍵為Isinit,值為false
以下是讀取和寫入config檔的方法定義:
寫入:
internal void settingApp_write(string key, string val) { System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); config.AppSettings.Settings["IsInit"].Value = val; config.Save(ConfigurationSaveMode.Modified); ConfigurationManager.RefreshSection("appSettings"); }
寫入測試:settingApp_write("IsInit","true");取出測試:var setting = settingApp_read("Isinit");此級別的修改是項目級別的配置文件修改,也級別的config檔就是你最終程式Bin目錄下的那個config檔的操作。
更多C#操作config檔的具體方法相關文章請關注PHP中文網!