Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Your step-into request resulted in an automatic step-over of a property or operator

I am getting the following error message while running .net 3.5 applciation

Your step-into request resulted in an automatic step-over of a property or operator.

This behavior can be overridden in the context menu for the line being executed by choosing 'Step Into Specific' or by unchecking the option 'Step over properties and operators'.

Do you want continue being notified when an automatic step-over happens?

What does this error message mean?

like image 793
Bala Avatar asked Apr 20 '10 06:04

Bala


People also ask

How do you uncheck step over property and operators?

Step into properties and operators in managed code To disable stepping into properties or operators, select Debug > Options. On the Debugging > General page, clear the Step over properties and operators (Managed only) checkbox.

Which of the following property is used to access the currently executed step?

Sometimes you need to access the currently executed step, e.g. to improve tracing. Use the _scenarioContext. StepContext property for this purpose.


2 Answers

VS2017 and VS2019:

Tools > Options > Debugging > Uncheck "Step over properties and operators > (Managed only)".

like image 130
radbyx Avatar answered Sep 19 '22 17:09

radbyx


It is not an error message as such. The IDE is telling you that tracing for some of your code is being skipped during debugging due to the current settings. If you want to be able to trace into the code, change the settings as described in the message.

You can change this behavior by going to: Tools -> Option -> Debugging.

like image 20
Brian Rasmussen Avatar answered Sep 16 '22 17:09

Brian Rasmussen