我只想使用敏捷包创建自己的简单文档,因此创建一个新的HtmlDocument,其中只包含基本的容器元素 - 即
<html><head></head><body></body></html>
如何在不实际加载htmldocument的情况下从头开始执行此操作。
答案 0 :(得分:21)
更容易:
var doc = new HtmlDocument();
var node = HtmlNode.CreateNode("<html><head></head><body></body></html>");
doc.DocumentNode.AppendChild(node);