Home > Back-end >  Debug Actions in VSCode: Meaning
Debug Actions in VSCode: Meaning

Time:02-15

My first 'real' debugging experience has been with VSCode.

I'm trying to learn how to debug in VSCode.

In this official documentation, nothing is said about what each debug action does... So, far I haven't had any trouble understanding the Continue / Pause, Step Into, Restart and Stop.

What I don't understand is what Step Over, and Step Out do. There's nothing on it, in the documentation.

CodePudding user response:

You can read up in the doc of Visual Studio Debugger.

You can create an issue for the VSC Documentation to explain this or put a link to a page explaining.

  • Related