Skip to content

Instantly share code, notes, and snippets.

@lobrien
Created August 13, 2019 22:31
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 lobrien/df0cdf7af3c3f6fc364c152e7cac73c5 to your computer and use it in GitHub Desktop.
Save lobrien/df0cdf7af3c3f6fc364c152e7cac73c5 to your computer and use it in GitHub Desktop.
InnerXML in F#
let innerXml (node : XNode ) =
use rdr = node.CreateReader()
rdr.MoveToContent() |> ignore
rdr.ReadInnerXml()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment