Skip to content

Instantly share code, notes, and snippets.

@compil3
Created November 4, 2013 06:37
Show Gist options
  • Select an option

  • Save compil3/7298855 to your computer and use it in GitHub Desktop.

Select an option

Save compil3/7298855 to your computer and use it in GitHub Desktop.
var cells = htmlDoc.DocumentNode
.SelectNodes ("//table[@class='data stats']/tbody/tr/td") OfType<XmlNode>() // can't get it to loop
.Select(node => node.InnerText.Trim())
.ToList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment