Icon | Menu Option | Description |
---|---|---|
Debug | Allows you to start the debugging process. Note: This icon remains disabled during a debugging session. | |
Skip All Breakpoints (CTRL+B) | Allows you to skip all breakpoints. | |
Resume (F8) | Allows you to resume a paused execution till next breakpoint or till the end. | |
Step Over (F6) | Step over will execute the whole function at one go and stop on the next executable line after the function call. You can use this option if you are not interested in debugging a particular function or method, and you want the debugger to execute that function completely as one entire step. | |
Step Into (F5) | Step into will stop on the first executable line inside a function. You can use this option if you want to debug into the code of a function or method, so the next step is to get inside that function and continue debugging step-by-step. Note: If you use this option for any expression which is not calling a function then it works like Step Over. | |
Stop and Restart (F10) | Restarts the debugging session from the beginning. | |
Stop (F9) | Stops the debugging session. |