July 2017
Beginner
466 pages
9h 37m
English
Let's start with placing our first breakpoint in the code and gradually move forward with code debugging. Click on the left-hand side bar of the code file in Visual Studio to place the breakpoint. Alternatively, you can press F9 to toggle the breakpoints. Once you place a breakpoint, a red circle will be generated in the side bar and the entire code block in the line will get a dark red background:

When you press F5 or start the application in debug mode, it will break at the point where you placed it. A yellow arrow head at the left-hand side bar represents a marker of the current execution of the line, having ...
Read now
Unlock full access