I am developing an app for Windows 8 that has a localized leader board. The data for that leader board is stored in two arrays: the name and the score. (Yes, a collection probably would have worked better, but using the arrays was vastly easier in my code). I would now like to know how I can save both of these arrays and reload them.
All of the examples on saving data that I have looked at so far only show how to save settings and my 800 page C# book happened to skip saving data altogether.
My two arrays are currently declared as such:
static string[] names = new string[100];
static int[] scores = new int[100];
I am using Visual Studio Express 2012 for Windows 8 on a system running Windows 8.1 Pro.
Thank you for the help.