How do you pass .net objects values around in F#?
- by Russell
I am currently learning F# and functional programming in general (from a C# background) and I have a question about using .net CLR objects during my processing.
The best way to describe my problem will be to give an example:
let xml = new XmlDocument()
|> fun doc -> doc.Load("report.xml"); doc
let xsl = new…