HTML Agility pack create new HTMLNode

China☆狼群 提交于 2019-12-08 16:14:21

问题


I'm using HTML Agility Pack to parse and transform a HTML file, but I get an exception "Item has already been added" when try to create a new HTMLNode because of the index parameter.

HtmlNode node1 = new HtmlNode(HtmlNodeType.Element, doc, 0); 
node1.Name = "div"; 

HtmlNode node2 = new HtmlNode(HtmlNodeType.Element, doc, 0); 
node2.Name = "div"; 

回答1:


This is how you can create a node (it basically mimics System.Xml semantics, on purpose):

    HtmlNode div = doc.CreateElement("div");
    myNode.Append(div);

I don't know about this constructor you use, maybe a new one available in version 1.4?



来源:https://stackoverflow.com/questions/5309989/html-agility-pack-create-new-htmlnode

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!