Created
November 4, 2013 06:37
-
-
Save compil3/7298855 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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