BatchGuy.App.Eac3To.Services.RemuxTemplate1EAC3ToOutputNamingService.GetFormattedVideoResolution C# (CSharp) Метод

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

private GetFormattedVideoResolution ( EAC3ToConfiguration eac3toConfiguration ) : string
eac3toConfiguration BatchGuy.App.Eac3to.Models.EAC3ToConfiguration
Результат string
        private string GetFormattedVideoResolution(EAC3ToConfiguration eac3toConfiguration)
        {
            string videoResolution = string.Empty;
            if (!string.IsNullOrEmpty(eac3toConfiguration.RemuxFileNameTemplate.VideoResolution))
                videoResolution = string.Format(" {0} ", eac3toConfiguration.RemuxFileNameTemplate.VideoResolution);
            return videoResolution;
        }