|
persistent store -
11-02-2009, 06:39 PM
Hello Everyone.
Having a minor issue with persistent store. I have a class called c_settings as you can see below which holds settings within my app. Is there a way to store this in a persistent store without first transfering the values to another type. (ie. boolean array and integer array) I tried just using _settings and everything works without throwing an error but my data doesn't appear to get loaded.
c_settings _settings = new c_settings();
class c_settings
{
boolean _case;
boolean _refresh;
boolean _audio;
int _volume;
int _length;
}
|