示例#1
0
 public HtmlTagWrapper AddChildAt(int index, HtmlTagWrapperBase newChild)
 {
     Children.Insert(index, newChild);
     return(this);
 }
示例#2
0
 public HtmlTagWrapper AddChild(HtmlTagWrapperBase newChild)
 {
     Children.Add(newChild);
     return(this);
 }