"Step into" problems

Completed

I'm trying to step through my code but when I want to step into something I have to press step into dozens of times before it actually steps into anything. This error pops up each time it fails to step into. Any idea if this can be disabled so it works properly?

0
2 comments

Probably the issue we encountered with "Step Into” has common with issue above so posting here

Having a code:

try

{

      return new Something(); // Exception throws here

}

catch

{

      return null;

}

 

 The Step into never worked from return new Something(); to return null; unless I had a break point inside the catch

0

Hi! Yes, these issues are related.
Here is ticket https://youtrack.jetbrains.com/issue/RIDER-8695
The only workaround for now is to not Step Into system methods (Or use Step Out)

0

Please sign in to leave a comment.