Skip to content

Instantly share code, notes, and snippets.

View zackbiernat's full-sized avatar

Zack Biernat zackbiernat

  • Lucky Trader / Gambly
  • Milwaukee, WI
View GitHub Profile
@rarous
rarous / XElementExtensions.cs
Created July 20, 2012 12:11
Convert XElement to XmlElement
using System.Xml;
using System.Xml.Linq;
public static class XElementExtensions
{
public static XmlElement ToXmlElement(this XElement el)
{
var doc = new XmlDocument();
doc.Load(el.CreateReader());
return doc.DocumentElement;