Possible Duplicate:
When do you use the “this” keyword?
In OOP sometimes we can write this.PropertyName = VALUE and sometimes we can skip this. and just write PropertyName = VALUE.
My questions:
Should we try always to use
this.?Does using / writing
thishave any effect on application performance or does it just make the code a little bit clearer?