public HtmlTagWrapper AddChildAt(int index, IHtmlTagWrapper newChild) { _children.Insert(index, newChild); return(this); }
public HtmlTagWrapper AddChildAt(int index, IHtmlTagWrapper newChild) { _children.Insert(index, newChild); return this; }
public HtmlTagWrapper AddChild(IHtmlTagWrapper newChild) { _children.Add(newChild); return(this); }
public HtmlTagWrapper AddChild(IHtmlTagWrapper newChild) { _children.Add(newChild); return this; }