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