Example #1
0
        public string GetContentLineValueOrDefault(string name)
        {
            ContentLine contentline = ContentLines.FirstOrDefault(x => x.Name.Equals(name));

            return(contentline != null?contentline.GetFormattedValue() : "");
        }