SpriteEditor.FileAssociationHelper.CheckAssociation C# (CSharp) Method

CheckAssociation() private method

private CheckAssociation ( RegistryKey associationKey ) : bool
associationKey Microsoft.Win32.RegistryKey
return bool
        private bool CheckAssociation(RegistryKey associationKey)
        {
            string currentExe = associationKey.GetValue(string.Empty).ToString();
            return currentExe.Equals(_assemblyCommand);
        }