3
我想將數據(密鑰,值對)保存在設備存儲器中,稍後再讀取(即使應用程序已退出並再次啓動)。什麼是Windows Phone 8(C#)上的NSUserDefaults的等價物
在iOS中,我使用NSUserDefaults來做到這一點。
我試過IsolatedStorageSettings,像這樣:
IsolatedStorageSettings appSettings = IsolatedStorageSettings.ApplicationSettings; appSettings.Add("myKey","myValue");
但是,當我重新啓動在模擬器的應用程序,並試圖讓 appSettings["myKey"]
價值我得到一個異常:System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.