Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GSonofNun/9402685 to your computer and use it in GitHub Desktop.
Save GSonofNun/9402685 to your computer and use it in GitHub Desktop.
public static void AddOrUpdate(this IsolatedStorageSettings settings, string key, object value)
{
if (settings.Contains(key))
{
settings[key] = value;
}
else
{
settings.Add(key, value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment