I'm using html agility pack and after I got array of nodes:...HtmlNode[] nodes = document.DocumentNode.SelectNodes("//tbody[@class='table']").ToArray();
...now i want to run a for loop one each nodes[i]. I've tried this:... for (int i = 0; i < 1; i++)
...