BatchGuy.App.CreateEAC3ToBatchForm.IsMkvMergePathSetInSettings C# (CSharp) Method

IsMkvMergePathSetInSettings() private method

private IsMkvMergePathSetInSettings ( ) : bool
return bool
        private bool IsMkvMergePathSetInSettings()
        {
            Setting setting = Program.ApplicationSettingsService.GetSettingByName("mkvmerge");
            if (setting == null || string.IsNullOrEmpty(setting.Value))
                return false;
            else
                return true;
        }
CreateEAC3ToBatchForm