我正在使用 IsolatedStorage 来保存用户的整数。添加第一个整数,效果很好。给定整数添加成功。
但是,在使用 IsolatedStorage 将另一个整数保存在同一字符串上(以替换旧整数)IsolatedStorageSettings.ApplicationSettings["Key"] = site;
时,App 会中断。
这是我的代码:
int num = 0;
if (int.TryParse(txtbox.Text, out num) && num > 0)
{
string site;
site = num.ToString();
IsolatedStorageSettings.ApplicationSettings.Add("Key", site);
IsolatedStorageSettings.ApplicationSettings["Key"] = site;
IsolatedStorageSettings.ApplicationSettings.Save();
MessageBox.Show("Bookmark created successfully");
}
else
{
MessageBox.Show("TextBox is not supposed to be empty");
}