예제 #1
0
 public HtmlTagWrapper AddChildAt(int index, IHtmlTagWrapper newChild)
 {
     _children.Insert(index, newChild);
     return(this);
 }
예제 #2
0
        public HtmlTagWrapper AddChildAt(int index, IHtmlTagWrapper newChild)
        {
			_children.Insert(index, newChild);
            return this;
        }
예제 #3
0
 public HtmlTagWrapper AddChild(IHtmlTagWrapper newChild)
 {
     _children.Add(newChild);
     return(this);
 }
예제 #4
0
        public HtmlTagWrapper AddChild(IHtmlTagWrapper newChild)
        {
			_children.Add(newChild);
            return this;
        }