Tagged Questions
The let-binding tag has no wiki summary.
4
votes
3answers
614 views
DIscriminated Union & let binding?
Why are let bindings not permitted in a discriminated union? I assume it has to do with let bindings being executed in a default constructor?
On a secondary note any suggestions on how I could ...
0
votes
3answers
220 views
How do I properly implement a property in F#?
Consider my first attempt, a simple type in F# like the following:
type Test() =
inherit BaseImplementingNotifyPropertyChangedViaOnPropertyChanged()
let mutable prop: string = null
member ...