BatchGuy.App.CreateEAC3ToBatchForm.IsEac3ToPathSetInSettings C# (CSharp) Méthode

IsEac3ToPathSetInSettings() private méthode

private IsEac3ToPathSetInSettings ( ) : bool
Résultat bool
        private bool IsEac3ToPathSetInSettings()
        {
            Setting setting = Program.ApplicationSettingsService.GetSettingByName("eac3to");
            if (setting == null || string.IsNullOrEmpty(setting.Value))
                return false;
            else
                return true;
        }
CreateEAC3ToBatchForm