Skip to content

Commit 0ec7f77

Browse files
committed
address review feedback
1 parent 2ddb933 commit 0ec7f77

2 files changed

Lines changed: 2 additions & 17 deletions

File tree

docs/core/tutorials/debugging-with-visual-studio-code.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -242,21 +242,6 @@ dotnet run --configuration Release HelloWorld.cs
242242

243243
::: zone-end
244244

245-
## Additional resources
246-
247-
::: zone pivot="vscode"
248-
249-
- [Debugging in Visual Studio Code](https://code.visualstudio.com/docs/editor/debugging)
250-
251-
::: zone-end
252-
253-
::: zone pivot="codespaces"
254-
255-
- [Debugging in Visual Studio Code](https://code.visualstudio.com/docs/editor/debugging)
256-
- [GitHub Codespaces documentation](https://docs.github.com/codespaces)
257-
258-
::: zone-end
259-
260245
## Next steps
261246

262247
In this tutorial, you used Visual Studio Code debugging tools. In the next tutorial, you publish a deployable version of the app.

docs/core/tutorials/with-visual-studio-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Enhance the application to prompt the user for their name and display it along w
148148

149149
This code displays a prompt in the console window and waits until the user enters a string followed by the <kbd>Enter</kbd> key. It stores this string in a variable named `name`. It also retrieves the value of the <xref:System.DateTime.Now?displayProperty=nameWithType> property, which contains the current local time, and assigns it to a variable named `currentDate`. And it displays these values in the console window. Finally, it displays a prompt in the console window and calls the <xref:System.Console.Read> method to wait for user input.
150150

151-
<xref:System.Environment.NewLine> is a platform-independent and language-independent way to represent a line break. It's the same as `\n` in C#.
151+
<xref:System.Environment.NewLine> is a platform-independent and language-independent way to represent a line break.
152152

153153
The dollar sign (`$`) in front of a string lets you put expressions such as variable names in curly braces in the string. The expression value is inserted into the string in place of the expression. This syntax is referred to as [interpolated strings](../../csharp/language-reference/tokens/interpolated.md).
154154

@@ -175,7 +175,7 @@ Enhance the application to prompt the user for their name and display it along w
175175

176176
This code displays a prompt in the console window and waits until the user enters a string followed by the <kbd>Enter</kbd> key. It stores this string in a variable named `name`. It also retrieves the value of the <xref:System.DateTime.Now?displayProperty=nameWithType> property, which contains the current local time, and assigns it to a variable named `currentDate`. And it displays these values in the console window. Finally, it displays a prompt in the console window and calls the <xref:System.Console.Read> method to wait for user input.
177177

178-
<xref:System.Environment.NewLine> is a platform-independent and language-independent way to represent a line break. It's the same as `\n` in C#.
178+
<xref:System.Environment.NewLine> is a platform-independent and language-independent way to represent a line break.
179179

180180
The dollar sign (`$`) in front of a string lets you put expressions such as variable names in curly braces in the string. The expression value is inserted into the string in place of the expression. This syntax is referred to as [interpolated strings](../../csharp/language-reference/tokens/interpolated.md).
181181

0 commit comments

Comments
 (0)