System.COnfiguration in C#2.0
I tried to add a new key value pair in app.setting
System.Configuration.Configuration config =ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);config.AppSettings.Settings.Add("ModificationDate",DateTime.Now.ToLongTimeString());
config.Save(ConfigurationSaveMode.Modified,true);
config.SaveAs("New");
// Force a reload of a changed section.
ConfigurationManager.RefreshSection("appSettings");But i can't see the change being reflected in the file....

