Created
August 13, 2019 22:31
-
-
Save lobrien/df0cdf7af3c3f6fc364c152e7cac73c5 to your computer and use it in GitHub Desktop.
InnerXML in F#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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