BatchGuy.App.Eac3To.Services.RemuxTemplate1EAC3ToOutputNamingService.GetFormattedVideoFormat C# (CSharp) Méthode

GetFormattedVideoFormat() private méthode

private GetFormattedVideoFormat ( EAC3ToConfiguration eac3toConfiguration ) : string
eac3toConfiguration BatchGuy.App.Eac3to.Models.EAC3ToConfiguration
Résultat string
        private string GetFormattedVideoFormat(EAC3ToConfiguration eac3toConfiguration)
        {
            string videoFormat = string.Empty;
            if (!string.IsNullOrEmpty(eac3toConfiguration.RemuxFileNameTemplate.VideoFormat))
                videoFormat = string.Format(" {0} ", eac3toConfiguration.RemuxFileNameTemplate.VideoFormat);
            return videoFormat;
        }