MonoMobile.Views.ViewModel.Save C# (CSharp) Method

Save() public static method

public static Save ( string key, string value ) : void
key string
value string
return void
		public static void Save(string key, string value)
		{
			if (value != null)
			{
				NSUserDefaults.StandardUserDefaults[key] = new NSString(value);
				NSUserDefaults.StandardUserDefaults.Synchronize();
			}
		}