Skip to content

Instantly share code, notes, and snippets.

@clausjoergensen
Created September 3, 2011 10:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clausjoergensen/1190957 to your computer and use it in GitHub Desktop.
Save clausjoergensen/1190957 to your computer and use it in GitHub Desktop.
var items = list.Descendants("div")
.FirstOrDefault(x => x.Id == "FlightInfo_FlightInfoUpdatePanel")
.Element("table")
.Element("tbody")
.Elements("tr")
.Select(tr => tr.InnerHtml)
var text = string.Join(items, Environment.NewLine);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment