I’m remembering .NET by practicing WP7.
In the book in several example there is such a line
Setting<Color> savedColor = new Setting<Color>(“SavedColor”, Colors.White);
This is equivallent to NSUserDefaults in iOS I guess, but they say I’m missing a reference to a namespace to use this Setting collection, What’s wrong?
Windows Phone 7 has no Setting generic.
The WP7 equivelent of NSUserDefaults is IsolatedStorageSettings which is in the
System.IO.IsolatedStoragenamespace.MSDN Page for IsolatedStorageSettings.