This is the definitions I have in the
private SavePreferenceCallback savePreferenceHandler;
public SavePreferenceCallback SavePreferenceHandler
{
get
{
return savePreferenceHandler;
}
set
{
savePreferenceHandler = value;
}
}
and then in debugging the code when I come to a line that is this:
savePreferenceHandler();
I don’t know how to go further and what to look at? what method is it running?
If you want to know what method will be called you can mouse over the variable
savePreferenceHandler, and the debugger will show you what method is assigned.You also can put a breakpoint in your property setter to see what method is assigned.
Lastly, you could use F11 and step into the method as it is invoked.