Skip to content

Instantly share code, notes, and snippets.

@jz5
Last active August 29, 2015 14:04
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 jz5/32139df0067a63172095 to your computer and use it in GitHub Desktop.
Save jz5/32139df0067a63172095 to your computer and use it in GitHub Desktop.
Dim items = New List(Of String)
Dim d = XDocument.Load("http://pronama.azurewebsites.net/feed/")
For Each i In d...<item>
Dim msg = String.Format("old post: {0} {1}", i.<title>.Value, i.<guid>.Value)
items.Add(msg)
Next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment