While I understand self-identifiers in F#, I am puzzled as to the benefits of such flexibility. Why does F# not just support this.Blah as C# does and be done with it? I'm guessing some people use it to improve readability, but even that seems a stretch. So, what are the uses/benefits of this language feature?
For the un-initiated, below is an example that defines a type-wide self identifier "self" and a method scoped identifier "this". The example is taken from the MSDN article linked above.
type MyClass2(dataIn) as self =
let data = dataIn
do
self.PrintMessage()
member this.PrintMessage() =
printf "Creating MyClass2 with Data %d" data
member this.this = thisof course! – Daniel Mar 18 '11 at 17:04Me? We don't want the large demographic of programmers coming from VB to feel left out. – Daniel Mar 18 '11 at 17:28member _.PrintMessage() =, to indicate that I'm not usingthis– Tim Robinson Mar 18 '11 at 18:30