What key do I use to step into a method in VS2008 debug mode?
If I have a method call like this:
string s = StepIntoThisMethod(DoNotStepIntoThisOne(i), NotIntoThisEither(j));
If I use F11, I step into the methods in the argument list. I would like to step into StepIntoThisMethod
method