Skip to content

Instantly share code, notes, and snippets.

@uekkie
Created October 21, 2015 05:40
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 uekkie/6afd227f70a622bcd9f2 to your computer and use it in GitHub Desktop.
Save uekkie/6afd227f70a622bcd9f2 to your computer and use it in GitHub Desktop.
SGMLReaderToXDocumnet
XDocument xml;
using (var sgml = new SgmlReader()
{
Href = url,
IgnoreDtd = true,
})
{
xml = XDocument.Load(sgml);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment