views:

133

answers:

2

Does anyone have a good source for learning how to work with XML in F#? Multiple sources would be nice if available.

+1  A: 

I don't know of a good summary document or great example code, but a Bing search for "F# XElement" (consider also with "site:stackoverflow.com" or "site:hubfs.net") seems to provide some good leads. Briefly, I think the .Net APIs for XML already have good stuff here, so it's just a matter of leveraging them from F#.

Brian
Yeah, I think you are right about just leveraging Linq to XML in F#. Probably jumped the gun on asking this question.
beef
+2  A: 

There is nice paper by Don Syme with related example: http://blogs.msdn.com/dsyme/archive/2007/04/07/draft-paper-on-f-active-patterns.aspx

ssp