NinjaCoder.MvvmCross.Services.SettingsService.SetRegistryValue C# (CSharp) Method

SetRegistryValue() private method

Sets the value.
private SetRegistryValue ( string subKey, string name, string value ) : void
subKey string The sub key.
name string The name.
value string The value.
return void
        internal void SetRegistryValue(
            string subKey,
            string name,
            string value)
        {
            RegistryKey registryKey = this.GetRegistryKey(subKey, true);

            registryKey?.SetValue(name, value);
        }