Skip to content

Commit 66ee4ab

Browse files
Merge pull request #6076 from Mikejo5000/mikejo-getstarted
Debugger tutorial updates for cpp
2 parents 4029e8b + bb67a5c commit 66ee4ab

13 files changed

+119
-163
lines changed

docs/debugger/getting-started-with-the-debugger-cpp.md

Lines changed: 110 additions & 158 deletions
Large diffs are not rendered by default.
Binary file not shown.
Loading
-67.7 KB
Loading
-19.7 KB
Loading
Loading
Loading
Binary file not shown.
Loading
-163 Bytes
Loading
Loading

docs/get-started/csharp/tutorial-debugger.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ First, you'll create a .NET Core console application project. The project type c
9292
> [!NOTE]
9393
> If you do not see the **Console App (.NET Core)** template, you can install it from the **Create a new project** window. In the **Not finding what you're looking for?** message, choose the **Install more tools and features** link. Then, in the Visual Studio Installer, choose the **.NET Core cross-platform development** workload.
9494
95-
1. In the **Configure your new project** window, type or enter *get-started-debugging* in the **Project name** box. Then, choose **Create**.
95+
1. In the **Configure your new project** window, type or enter *GetStartedDebugging* in the **Project name** box. Then, choose **Create**.
9696

9797
Visual Studio opens your new project.
9898

@@ -197,7 +197,7 @@ Mostly, we use the keyboard shortcuts here, because it's a good way to get fast
197197

198198
You should be back in the `for` loop in the `Main` method, paused at the `SendMessage` method call.
199199

200-
1. Press **F11** time until you get back to the `SendMessage` method call again.
200+
1. Press **F11** several times until you get back to the `SendMessage` method call again.
201201

202202
1. While paused at the method call, press **F10** (or choose **Debug > Step Over**) once.
203203

@@ -207,7 +207,9 @@ Mostly, we use the keyboard shortcuts here, because it's a good way to get fast
207207

208208
## Navigate code using Run to Click
209209

210-
1. In the code editor, scroll down and hover over the `Console.WriteLine` method in the `SendMessage` message until the green **Run to Click** button ![Run to Click](../../debugger/media/dbg-tour-run-to-click.png "RunToClick") appears on the left. The tooltip for the button shows "Run execution to here".
210+
1. Press **F5** to advance to the breakpoint again.
211+
212+
1. In the code editor, scroll down and hover over the `Console.WriteLine` method in the `SendMessage` method until the green **Run to Click** button ![Run to Click](../../debugger/media/dbg-tour-run-to-click.png "RunToClick") appears on the left. The tooltip for the button shows "Run execution to here".
211213

212214
![Use the Run to Click feature](../csharp/media/get-started-run-to-click.png "Run to Click")
213215

docs/get-started/visual-basic/tutorial-debugger.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ Mostly, we use the keyboard shortcuts here, because it's a good way to get fast
197197

198198
You should be back in the `For` loop in the `Main` method, paused at the `SendMessage` method call.
199199

200-
1. Press **F11** time until you get back to the `SendMessage` method call again.
200+
1. Press **F11** several times until you get back to the `SendMessage` method call again.
201201

202202
1. While paused at the method call, press **F10** (or choose **Debug > Step Over**) once.
203203

@@ -207,7 +207,9 @@ Mostly, we use the keyboard shortcuts here, because it's a good way to get fast
207207

208208
## Navigate code using Run to Click
209209

210-
1. In the code editor, scroll down and hover over the `Console.WriteLine` method in the `SendMessage` message until the green **Run to Click** button ![Run to Click](../../debugger/media/dbg-tour-run-to-click.png "RunToClick") appears on the left. The tooltip for the button shows "Run execution to here".
210+
1. Press **F5** to advance to the breakpoint again.
211+
212+
1. In the code editor, scroll down and hover over the `Console.WriteLine` method in the `SendMessage` method until the green **Run to Click** button ![Run to Click](../../debugger/media/dbg-tour-run-to-click.png "RunToClick") appears on the left. The tooltip for the button shows "Run execution to here".
211213

212214
![Use the Run to Click feature](../visual-basic/media/get-started-run-to-click-vb.png "Run to Click")
213215

0 commit comments

Comments
 (0)