I am using HTMLAgilityPack in my application, and i want to get the item(node) count of SelectedNodes as the code below:...HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(webBrowser1.DocumentText);
var tagListe = doc.Do...