1. 程式人生 > >C#配置項的儲存與讀取

C#配置項的儲存與讀取

// 儲存註冊碼                Configuration configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);                configuration.AppSettings.Settings["SN"].Value = sn;                configuration.Save();ConfigurationManager.RefreshSection("appSettings");                MessageBox.Show("註冊成功,請重新登入!!");