コード例 #1
0
        public void AddChild(string childName, string childText)
        {
            var e = new HtmlElement(childName, childText);

            root.Elements.Add(e);
        }
コード例 #2
0
 public void Clear()
 {
     root = new HtmlElement {
         Name = RootName
     };
 }