1
我想在wp7中的獨立存儲中存儲一個整數值,這樣當我關閉並再次打開應用程序時,應該保留該值。我怎麼能得到這個?如何將整數值存儲在wp7的獨立存儲中?
我想在wp7中的獨立存儲中存儲一個整數值,這樣當我關閉並再次打開應用程序時,應該保留該值。我怎麼能得到這個?如何將整數值存儲在wp7的獨立存儲中?
如果它來存儲一個整數值,最簡單的方法是使用IsolatedStorageSettings.ApplicationSettings
:
// Store the value
IsolatedStorageSettings.ApplicationSettings["Whatever"] = yourValue;
// Retrieve it
yourValue = (int)IsolatedStorageSettings.ApplicationSettings["Whatever"];