My guess is that "this" is more C#-ish and in F# it's better to use "self".
Are there any required/preferred coding guidelines?
My guess is that "this" is more C#-ish and in F# it's better to use "self".
Are there any required/preferred coding guidelines?
In many examples I've seen people are using just x. In my own code started with this, but now I usually do x, because IMHO it makes the code somewhat more readable
In addition to "this", "self", and "x", I have also seen "__" and "lowercaseenclosingclassname".