0

ユーザーから整数を保存するためにIsolatedStorageを使用していました。最初の整数を追加するには、うまく機能します。指定された整数が正常に追加されました。

しかし、IsolatedStorage を使用して (古い整数を置き換えるために) 同じ文字列に保存される別の整数を指定するとIsolatedStorageSettings.ApplicationSettings["Key"] = site;、アプリが壊れます。

ここに私のコード:

        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");
        }
4

1 に答える 1