Step Back to previous line in visual studio code

1

Is there any way to step back to previous line in Visual Studio Code while debugging c# , just like drag to previous code or any line in visual studio 17 or 19 in windows?

Sandeep K

Posted 2019-08-25T09:59:01.903

Reputation: 13

Answers

0

The vscode-debug-specs for C# do not specify "Step Back" as one of the options. This is reserved for Visual Studio Enterprise 2017 version 15.5.

enter image description here

harrymc

Posted 2019-08-25T09:59:01.903

Reputation: 306 093

Any debugger available in vscode marketplace that have stepback – Sandeep K – 2019-08-25T19:36:49.810

Sorry, not that I know of. – harrymc – 2019-08-25T19:46:15.363

0

You can do step-back to previous line in VS code via the use of new Step Backward icon while debugging your code with IntelliTrace Debugging.

First you need to Enable IntelliTrace Debugging feature in your Visual studio code. for do this follow below step

Step 1: Go to Tools > Options > IntelliTrace > General > IntelliTrace events and snapshots

Now you can go previous line while debugging with the help of step backward icon.

HarshShah

Posted 2019-08-25T09:59:01.903

Reputation: 60