tags:

views:

303

answers:

1

Iam 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?

+1  A: 

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.

Brian Rasmussen