Auto Transition

I get this error message when entering some methods

  Do you want to continue being notified when an Automatic step over occurs? 

I usually answer โ€œYes,โ€ and I get on the line that I want to go to.

However, I just clicked No (because I'm tired of the dialog box that always appears). When I did this, he missed a lot of the code I wanted to go through. Now, when I enter my method, it skips my method (and jumps to the finally block, because the method I'm trying to do is throwing an exception).

How can I change my answer to Yes?

I would prefer that he never ask me (it shows the code by default), but if he is faced with a choice that skips the code that I need to see, or with NagBox, I will take NagBox.

+4
source share
3 answers

If I understand this message correctly, the code is always skipped - regardless of your choice. I like: "Hey, just heads-up, I'll miss some code. Do you want me to let you know next time?" Well no

+4
source

I am blissfully unaware of this. Check the box "Tools + Options", "Debugger", "Navigate through properties and operators." If it is not, write down the key you are pressing.

+10
source

Uncheck "Tools + Options", "Debugger", "Go to Properties and Operators" and fix this problem.

0
source

Source: https://habr.com/ru/post/1312362/


All Articles