Exemplo n.º 1
0
 public HtmlTagWrapper AddChildAt(int index, HtmlTagWrapperBase newChild)
 {
     Children.Insert(index, newChild);
     return(this);
 }
Exemplo n.º 2
0
 public HtmlTagWrapper AddChild(HtmlTagWrapperBase newChild)
 {
     Children.Add(newChild);
     return(this);
 }