BatchGuy.App.CreateX264BatchFileForm.IsMkvMergePathSetInSettings C# (CSharp) Метод

IsMkvMergePathSetInSettings() приватный Метод

private IsMkvMergePathSetInSettings ( ) : bool
Результат bool
        private bool IsMkvMergePathSetInSettings()
        {
            Setting setting = Program.ApplicationSettingsService.GetSettingByName("mkvmerge");
            if (setting == null || string.IsNullOrEmpty(setting.Value))
                return false;
            else
                return true;
        }
CreateX264BatchFileForm