F# 3 has auto-implemented properties so you can declare properties without declaring the backing field.
Example taken from Properties(F#) on MSDN:
type MyClass() =
member val MyProperty = "" with get, set
F# 3 has auto-implemented properties so you can declare properties without declaring the backing field.
Example taken from Properties(F#) on MSDN:
type MyClass() =
member val MyProperty = "" with get, set