Signum.Web.HtmlStringBuilder.HtmlStringBuilder C# (CSharp) Method

HtmlStringBuilder() public method

public HtmlStringBuilder ( IEnumerable elements ) : System
elements IEnumerable
return System
        public HtmlStringBuilder(IEnumerable<MvcHtmlString> elements)
        {
            if (elements != null)
            {
                foreach (var item in elements)
                    sb.AppendLine(item.ToHtmlString());
            }
        }

Same methods

HtmlStringBuilder::HtmlStringBuilder ( ) : System