Suppose in the debugger I saw that the value thisfor some instance
this
{MyClass@6164}
Now, how to set a breakpoint in some method and set its condition so that it stops only if it thisis the same?
You can use a conditional breakpoint .
Set a condition in which you check this.hashCode() == HASHCODE. You can get it HASHCODEusing the Evaluate Expression function .
this.hashCode() == HASHCODE
HASHCODE
Hope this helps.