我的目標是檢索應用程序關閉時上次存儲的計數器的值。 即我將計數器值存儲在獨立存儲中。如果計數器的值爲5,並且應用程序已關閉並重新啓動,則應該能夠檢索5. 爲此,我已經編寫了下面的代碼,但是我無法解決這個問題。在IsolatedStorageSettings中聲明密鑰
IsolatedStorageSettings isoStoreSettings = IsolatedStorageSettings.ApplicationSettings;
int count=0;
isoStoreSettings["flag"];
if (isoStoreSettings["flag"]!="set")
{
isoStoreSettings["count"] = count;
isoStoreSettings["flag"] = "set";
}
count = isoStorageSettings["count"]; //using the value of count stored previously
//some code which updates the count variable
isoStorageSettings["count"]=count;
與此代碼的問題是isolatedstorage關鍵的那個聲明是現在允許的,我們必須一定值分配給關鍵 但如果我將值分配給該鍵,它會重新初始化密鑰每次應用程序開始。因此,如果有人可以解決這個問題,請幫助 即使有其他替代方案爲我的目標也請分享。在Add方法
你在哪裏使用此碼?什麼是國旗? – Romasz