Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/core/tutorials/with-visual-studio-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Create a .NET console app project named "HelloWorld".
dotnet new console --framework net7.0
```

The project template creates a simple application that displays "Hello World" in the console window by calling the <xref:System.Console.WriteLine(System.String)?displayProperty=nameWithType> method in *Program.cs*.
The project template creates a simple application that displays "Hello, World" in the console window by calling the <xref:System.Console.WriteLine(System.String)?displayProperty=nameWithType> method in *Program.cs*.

```csharp
Console.WriteLine("Hello, World!");
Expand All @@ -55,7 +55,7 @@ Create a .NET console app project named "HelloWorld".
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.WriteLine("Hello, World!");
}
}
}
Expand All @@ -81,7 +81,7 @@ Run the following command in the **Terminal**:
dotnet run
```

The program displays "Hello World!" and ends.
The program displays "Hello, World!" and ends.

![The dotnet run command](media/with-visual-studio-code/dotnet-run-command.png)

Expand Down Expand Up @@ -164,7 +164,7 @@ Create a .NET console app project named "HelloWorld".
dotnet new console --framework net6.0 --use-program-main
```

The project template creates a simple application that displays "Hello World" in the console window by calling the <xref:System.Console.WriteLine(System.String)?displayProperty=nameWithType> method in *Program.cs*.
The project template creates a simple application that displays "Hello, World" in the console window by calling the <xref:System.Console.WriteLine(System.String)?displayProperty=nameWithType> method in *Program.cs*.

```csharp
namespace HelloWorld;
Expand All @@ -173,7 +173,7 @@ Create a .NET console app project named "HelloWorld".
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.WriteLine("Hello, World!");
}
}
```
Expand All @@ -198,7 +198,7 @@ Run the following command in the **Terminal**:
dotnet run
```

The program displays "Hello World!" and ends.
The program displays "Hello, World!" and ends.

![The dotnet run command](media/with-visual-studio-code/dotnet-run-command.png)

Expand Down