WikiFunctions.RegistryUtils.SetValue C# (CSharp) Method

SetValue() public static method

Writes a string value to an AWB registry subkey
public static SetValue ( string keyNameSuffix, string valueName, string value ) : void
keyNameSuffix string
valueName string
value string
return void
        public static void SetValue(string keyNameSuffix, string valueName, string value)
        {
            GetWritableKey(keyNameSuffix).SetValue(valueName, value);
        }