SpriteEditor.FileAssociationHelper.Refresh C# (CSharp) Method

Refresh() private method

private Refresh ( RegistryKey key, bool &_isExe, string &_currentExe ) : void
key Microsoft.Win32.RegistryKey
_isExe bool
_currentExe string
return void
        private void Refresh(RegistryKey key, ref bool _isExe, ref string _currentExe)
        {
            _isExe = CheckAssociation(key);
            _currentExe = key.GetValue(string.Empty).ToString();
        }