保存高分

扫码查看
本文介绍了保存高分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不知道如何为Windows Phone 8应用程序保存和加载高分。我怎么可能这样做,我也需要它来节省总金额。请帮助并谢谢!!!

I don't know how to save and load a highscore for a windows phone 8 app. How might I do this, also I need it to save the total amount of money to. Please help and thank you!!!

推荐答案

                            IsolatedStorageSettings.ApplicationSettings["Score"] =Score;
                            IsolatedStorageSettings.ApplicationSettings.Save();

并将其检索为

if (IsolatedStorageSettings.ApplicationSettings.Contains("Score"))
            {
                Score= IsolatedStorageSettings.ApplicationSettings["Score"].ToString();
            }


这篇关于保存高分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 09:27
查看更多