Skip to content

Instantly share code, notes, and snippets.

@jonpryor
Created February 7, 2013 20:35
Show Gist options
  • Save jonpryor/4733938 to your computer and use it in GitHub Desktop.
Save jonpryor/4733938 to your computer and use it in GitHub Desktop.
csharp> var x = XElement.Parse("<MEMLOC loc= '0x55E155' />");
csharp> x.Descendants("MEMLOC");
{ }
csharp> x.DescendantsAndSelf("MEMLOC");
{ <MEMLOC loc="0x55E155" /> }
csharp> x.DescendantNodes();
{ }
csharp> x.DescendantNodesAndSelf();
{ <MEMLOC loc="0x55E155" /> }
csharp>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment