Alexandria.Game.GetRegistrySoftwareValue C# (CSharp) Метод

GetRegistrySoftwareValue() защищенный Метод

Get a registry value in the software registry directories.
protected GetRegistrySoftwareValue ( RegistryKey baseKey, string subpath, string name ) : string
baseKey Microsoft.Win32.RegistryKey
subpath string
name string
Результат string
        protected string GetRegistrySoftwareValue(RegistryKey baseKey, string subpath, string name)
        {
            return GetRegistryValue(baseKey, SoftwareRegistryBase + subpath, name) ??
                GetRegistryValue(baseKey, SoftwareRegistryBase32 + subpath, name);
        }