HTML Agility Pack C# - Select cells for a row (not the whole table)
See the question and my original answer on StackOverflowYour second select //td selects recursively (two /) and from the top (the expression starts with a /). What you want is more something like this:
var cells = row.SelectNodes(".//td");
Which means select recursively from the current context/node (.).
See here XPATH Syntax for more on XPATH expressions.