我正在尝试解析网页。但它给出了一个错误。请帮我。谢谢。
这是代码:
static void myMain()
{
using (var client = new WebClient())
{
string data = client.DownloadString("http://www.google.com");
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(data);
var nodes = doc.DocumentNode.SelectNodes("//a[@href]");
foreach (HtmlNode link in nodes)
{
HtmlAttribute att = link.Attributes["href"];
Console.WriteLine(att.Value);
}
}
}
The type 'System.Windows.Form.HtmlDocument' has no constructors defined.
我已经包含了 HAP ,这是错误的。
谢谢