Home > Archive > Visual Studio > May 2004 > Debugger shortcut keys
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Debugger shortcut keys
|
|
| Hans Kesting 2004-05-18, 11:32 am |
| Hi,
Is there (in vs.Net) a key-combination (or even a menu command)
that tells the debugger to step into the method-call, bypassing all
properties etc that for the parameters for this call?
for example, current line is:
int res = MyMethod(MyProperty);
if I use F10, the method gets executed without stepping into anything
if I use F11, first the debugger steps into MyProperty and then MyMethod
is there a key that bypasses (executes) MyProperty but steps into MyMethod?
Hans Kesting
| |
| Tom Stewart 2004-05-18, 12:36 pm |
| In *similar* situations, I've used Step In, then Step Out of the undesired function, then Step In again, and I'm at the
right place.
HTH,
--
Tom
"Hans Kesting" <news.2.hansdk@spamgourmet.com> wrote in message news:OQ8U%23HOPEHA.3380@TK2MSFTNGP11.phx.gbl...
> Hi,
>
> Is there (in vs.Net) a key-combination (or even a menu command)
> that tells the debugger to step into the method-call, bypassing all
> properties etc that for the parameters for this call?
>
> for example, current line is:
>
> int res = MyMethod(MyProperty);
>
> if I use F10, the method gets executed without stepping into anything
> if I use F11, first the debugger steps into MyProperty and then MyMethod
> is there a key that bypasses (executes) MyProperty but steps into MyMethod?
>
>
> Hans Kesting
>
>
| |
| Hans Kesting 2004-05-19, 4:31 am |
| Yes, that's what I end up doing. But if the method has 5 parameters,
all of them properties or functions, it gets a bit boring .
Hans
"Tom Stewart" <tastewar@newsgroups.nospam> wrote in message news:uPQ9IpOPEHA.3012@TK2MSFTNGP09.phx.gbl...
> In *similar* situations, I've used Step In, then Step Out of the undesired function, then Step In again, and I'm at the
> right place.
>
> HTH,
> --
> Tom
>
> "Hans Kesting" <news.2.hansdk@spamgourmet.com> wrote in message news:OQ8U%23HOPEHA.3380@TK2MSFTNGP11.phx.gbl...
>
>
|
|
|
|
|