データ (キー、値のペア) をデバイス ストレージに保存し、後で読みたい (アプリケーションが終了して再度起動した場合でも)。
iOS では、NSUserDefaults を使用してこれを行います。
次のように、IsolatedStorageSettings を試しました。
IsolatedStorageSettings appSettings = IsolatedStorageSettings.ApplicationSettings;
appSettings.Add("myKey","myValue");
しかし、エミュレーターでアプリを再起動して
appSettings["myKey"]
値を取得しようとすると、例外が発生します。System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.