如何将 string 转换成HtmlDocument
如题。我又个html的string怎么转换成HtmlDocument
------解决方案--------------------1, OpenNew 方法 Gets a new HtmlDocument to use with the Write method.
2, Write 方法 Writes a new HTML page.
------解决方案--------------------
HtmlDocument doc = new HtmlDocument();
doc.Write("<html><title>test</title><body>this is a hteml</body></html>");
------解决方案--------------------[color=#FF99CC][/color]up
------解决方案--------------------