Skip to content

Instantly share code, notes, and snippets.

@AlexandrYZ
Created November 4, 2012 19:15
Show Gist options
  • Save AlexandrYZ/4013159 to your computer and use it in GitHub Desktop.
Save AlexandrYZ/4013159 to your computer and use it in GitHub Desktop.
XElement helper
public static class XElementExtentsions
{
public static string GetElement(this XElement el, string nodeName)
{
var element = el.Element(nodeName);
if (element != null)
return element.Value;
throw new ArgumentNullException("Xml element not found - " + nodeName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment