新手c#修改APPSETTING的问题求教
网上找到的一段代码,很多网站有,这里有三个参数,后面2个是key和 value,但是第一个是什么呢?调用的时候,第一个参数应该是输入什么的?///<summary>
///更新在config文件中appSettings配置节增加一对键、值对。
///</summary>
///<param name="newKey"></param>
///<param name="newValue"></param>
///<param name="config"></param>
public static void UpdateAppSettingsItemValue(this Configuration config, string newKey, string newValue)
{
UpdateAppSettingsItemNoSave(config, newKey, newValue);
////// Save the changes in App.config file.
config.Save(ConfigurationSaveMode.Modified);