Tagged Questions
0
votes
3answers
224 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 ...