You can use the keyword, when you explicitly want to say that it is the instance in the object that you mean, like in...
Code:
private string variable;
public void someFunction(string variable)
{
this.variable = variable;
}
(within a class).
Hope it helps.
Jacob.