Possible Duplicate:
When do you use the “this” keyword?
In my book about C# the author uses the 'this' keyword a lot. He explained, that it is necessary to use it constructor, when the name of one of the parameters is the same as the name of a variable, struct etc. like here:
class Class {
int x, y;
public Class(int x, int y) {
this.x = x;
this.y = y;
}
}
He also said that it does automatically refer to the class it is in. But he uses the 'this' keyword alo in different contexts, in which it seems entirely unnecessary. In those situations the 'this' keyword is used before variable, struct etc., when there doesn't seem to be any ambiguity over what variable, struct etc. is meant.
So my question is: Are there any cases, where the 'this' keyword is necessary, that aren't written in the book? (excluding indexers)
I have already searched for the answer on the internet, but unsuccessfully so far.