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

IsEac3ToPathSetInSettings() private method

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