在C#中,可以使用System.Configuration
命名空間中的ConfigurationManager
類來讀取和修改配置文件。以下是一個簡單的示例代碼:
string value = ConfigurationManager.AppSettings["keyName"];
Console.WriteLine("Value: " + value);
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["keyName"].Value = "newValue";
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings");
在以上示例中,keyName
是配置文件中的鍵,可以根據需要進行修改。記得在修改配置文件后調用Save
方法和RefreshSection
方法來保存和刷新配置文件。