Mastering VS Code Debugging and Azure Deployment
1. VS Code Debugging Features
1.1 Disconnect or Stop
In VS Code, you can end a debugging session using the disconnect or stop function. When launching the debugger with an attach request type, a Disconnect button appears in the navigation bar. This button detaches the debugger from the app loaded in the browser. If you use the launch request type, the Disconnect button is replaced with a Stop button.
1.2 Inspecting Data with Variables
During code debugging, you can view variables and their values in a structured way. The local variables list shows variables available in the class or method, depending on the context. You can also set the value of a variable by double - clicking it