コードをデバッグして取得すると、html アジリティ パックでエラーが発生します。 where htmldoc = new HTML Document (); ファイル HtmlDocument.cs を見つけますか? これはバグですか?どうすれば修正できますか?
string Url = "http://www.mittanbud.no/bedriftsok/?q=Baderom";
var htmlDoc = new HtmlDocument();
htmlDoc.OptionReadEncoding = false;
var request = (HttpWebRequest)WebRequest.Create(Url);
request.Method = "GET";
using (var response = (HttpWebResponse)request.GetResponse())
{
using (var stream = response.GetResponseStream())
{
htmlDoc.Load(stream, Encoding.UTF8);
}
}