我正在使用WebClient.DownloadString(url)通过URL获取html文档,但是很难找到想要的元素内容。在阅读的同时,我发现了HtmlDocument,并且它具有像GetElementById这样的简洁内容。如何使用HtmlDocument返回的html填充url

最佳答案

HtmlDocument类是 native IHtmlDocument2 COM接口(interface)的包装。
您不能轻易地从字符串创建它。

您应该使用HTML Agility Pack

关于c# - 字符串到HtmlDocument,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4935446/

10-10 07:14