我正处于完成我的第一个 WP7 应用程序的阵痛中,现在我遇到了一个刚刚弹出的奇怪错误。
当我将数据保存回本地存储(添加模式)时,我收到一条错误消息,提示“值不在预期范围内” 这仅适用于新的关键项目,更新工作正常。
有人有任何想法或想法吗?
// -----------------------------------------------------------------------------
//Setting the fileName
// IsolatedStorageSettings appSettings = IsolatedStorageSettings.ApplicationSettings;
// -----------------------------------------------------------------------------
// -------------------------------Local Storage----------------------------------------------
public void setLocalStorage(string key, object value) {
try
{
// add new Anchorage/drift values
appSettings.Add(key, value);
}
catch (ArgumentException ex)
{
MessageBox.Show("An error occurred during writing the key " + key + ex, "ERROR", MessageBoxButton.OK);
}
}
//------------------------------------------------ --------------------------------- 在此先感谢菲尔