In Windows Phone 7 -> IsolatedStorageSettings class we have two functions Add() and Save(). According to me both are doing the same thing meanings saving a key value pair in Isolated Storage. My question what is the difference between these two functions.
To test this what is did was in App.xaml.cs in Application_Deactivated event and Application_Closing event I added one key value pair in IsolatedStorageSettings without calling the save function.
On Application_Launched and Application_Activated event I am retrieving same key value pair and I am getting same value for the key which I had added above.
So, without actually calling Save function of IsolatedStorageSettings I am able to retrieve the values.