Page 1 of 1

Step by Step

Posted: Tue Jun 21, 2011 6:46 pm
by lxZero
Eran,

Suppose that while debugging step by step a line like A(B());C(); you are at the last line of B
- If you issue there a 'Next' then you will be sent to the line after A(B());C();

I wonder if it is possible to do it as Visual Studio does which is:
- a 'Next' takes you back to the line containing A(B());C();

Otherwise to get into C();
- 'Step-Out' which correctly brings you to the same line
- and then Step-in. To get in to A
- Step-Out back on the main line
- finally Step-In to get into C

Thank you
lxZero