BlackHole.Slave.Helper.RegistryHelper.IsNameOrValueNull C# (CSharp) Method

IsNameOrValueNull() private static method

private static IsNameOrValueNull ( this keyName, RegistryKey key ) : bool
keyName this
key Microsoft.Win32.RegistryKey
return bool
        private static bool IsNameOrValueNull(this string keyName, RegistryKey key) =>
            string.IsNullOrEmpty(keyName) || (key == null);