Does anybody know how to debug inside a callback method I need to debug inside MyMethod() in the following example. Is it possible at all Thanks in advance.
e.g.
ThreadPool.QueueUserWorkItem(new WaitCallback(MyMethod), pw);
private void MyMethod(object status)
{
IProgressCallback callback = status as IProgressCallback;
for (int i = 0; i < 10; i++){
callback.StepTo((i + 1) * 10000 / 10);......
}
callback.End();}

debug inside callback method
frli01
Can't you just set a breakpoint in the method
Stephaen marois