2013-10-18 70 views
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.

回答

2

啊,我發現它:))

我忘了調用save()方法:)
appSettings.Save();

相關問題