Skip to content

Instantly share code, notes, and snippets.

@fresky
Created August 24, 2012 09:59
Show Gist options
  • Save fresky/3448563 to your computer and use it in GitHub Desktop.
Save fresky/3448563 to your computer and use it in GitHub Desktop.
Read xml
XDocument doc = XDocument.Load("xml.xml");
foreach (var xElement in doc.Descendants("Root"))
{
foreach (var s in xElement.Elements())
{
Console.WriteLine(string.Format("{0} : {1}", s.Name, s.Value));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment