如何在wp7中的隔离存储中存储整数值?

时间:2012-11-16 09:11:19

标签: c# windows-phone-7

我希望在wp7中的隔离存储中存储一个整数值,这样当我再次关闭并打开应用程序时,应该保留该值。我怎么能得到这个?

1 个答案:

答案 0 :(得分:5)

如果要存储单个整数值,最简单的方法是使用IsolatedStorageSettings.ApplicationSettings

// Store the value
IsolatedStorageSettings.ApplicationSettings["Whatever"] = yourValue;

// Retrieve it
yourValue = (int)IsolatedStorageSettings.ApplicationSettings["Whatever"];