error with html agility pack, when I debug the code and get to: where htmldoc = new HTML Document ();so would it find a file HtmlDocument.csIs this a bug and how can I fix it?\[code\]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); } }\[/code\]