Skip to content

Commit 52ce37c

Browse files
authored
Merge pull request #4748 from MicrosoftDocs/master637164370360142044
For protected CLA branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents 7dfe8c7 + bfffc8e commit 52ce37c

12 files changed

+93
-177
lines changed

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

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

182182
`SendMessage(name, a[i]);`
183183

184-
2. Press **F11** one more time to step into the `SendMessage` method.
184+
1. Press **F11** one more time to step into the `SendMessage` method.
185185

186186
The yellow pointer advances into the `SendMessage` method.
187187

@@ -197,7 +197,9 @@ 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-
3. While paused at the method call, press **F10** (or choose **Debug > Step Over**) once.
200+
1. Press **F11** time until you get back to the `SendMessage` method call again.
201+
202+
1. While paused at the method call, press **F10** (or choose **Debug > Step Over**) once.
201203

202204
![Use F10 to Step Over code](../csharp/media/get-started-step-over.png "F10 Step Over")
203205

@@ -256,7 +258,7 @@ Features that allow you to inspect variables are one of the most useful features
256258

257259
1. Expand the `letters` variable to show the elements that it contains.
258260

259-
![Inspect variables in the Autos Window](../csharp/media/get-started-locals-window.png "Autos Window")
261+
![Inspect variables in the Locals Window](../csharp/media/get-started-locals-window.png "Locals Window")
260262

261263
The **Locals** window shows you the variables that are in the current [scope](https://www.wikipedia.org/wiki/Scope_(computer_science)), that is, the current execution context.
262264
Binary file not shown.
Loading
Loading
Loading
Loading
Loading
Loading
Binary file not shown.
Loading
Loading

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

Lines changed: 88 additions & 174 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)