You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/get-started/csharp/tutorial-debugger.md
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ First, you'll create a .NET Core console application project. The project type c
92
92
> [!NOTE]
93
93
> 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.
94
94
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**.
96
96
97
97
Visual Studio opens your new project.
98
98
@@ -197,7 +197,7 @@ Mostly, we use the keyboard shortcuts here, because it's a good way to get fast
197
197
198
198
Youshouldbebackinthe `for` loop in the `Main` method, paused at the `SendMessage` method call.
199
199
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.
201
201
202
202
1. While paused at the method call, press **F10** (or choose **Debug > Step Over**) once.
203
203
@@ -207,7 +207,9 @@ Mostly, we use the keyboard shortcuts here, because it's a good way to get fast
207
207
208
208
## Navigate code using Run to Click
209
209
210
-
1. Inthecodeeditor, scrolldownandhoveroverthe `Console.WriteLine` methodinthe `SendMessage` messageuntilthegreen**RuntoClick**button appearsontheleft. Thetooltipfor the button shows "Run execution to here".
210
+
1. Press**F5**toadvancetothebreakpointagain.
211
+
212
+
1. Inthecodeeditor, scrolldownandhoveroverthe `Console.WriteLine` methodinthe `SendMessage` methoduntilthegreen**RuntoClick**button appearsontheleft. Thetooltipfor the button shows "Run execution to here".
211
213
212
214

0 commit comments