我想在 wp7 的隔离存储中存储一个整数值,以便当我再次关闭并打开应用程序时,应该保留该值。我怎样才能得到这个?
问问题
714 次
1 回答
5
如果要存储单个整数值,最简单的方法是使用IsolatedStorageSettings.ApplicationSettings
:
// Store the value
IsolatedStorageSettings.ApplicationSettings["Whatever"] = yourValue;
// Retrieve it
yourValue = (int)IsolatedStorageSettings.ApplicationSettings["Whatever"];
于 2012-11-16T09:33:44.990 回答