Skip to content

Commit fceed2e

Browse files
committed
fix issues raised by DevDiv bug 1002428
1 parent d871b3e commit fceed2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Let's create an app that prompts you for your name and then displays it along wi
142142
Console.WriteLine(vbCrLf + "What is your name? ")
143143
Dim name = Console.ReadLine()
144144
Dim currentDate = DateTime.Now
145-
Console.WriteLine($"{vbCrLf}Hello, {name}, on {currentDate:d} at {currentDate:t}")
145+
Console.WriteLine($"{vbCrLf}Hello, {name}, on {currentDate:d} at {currentDate:t}!")
146146
Console.Write(vbCrLf + "Press any key to exit... ")
147147
Console.ReadKey(True)
148148
```
@@ -202,7 +202,7 @@ Let's create an app that prompts you for your name and then displays it along wi
202202

203203
1. After you apply the language and platform filters, choose the **Console App (.NET Core)** template, and then choose **Next**.
204204

205-
Then, in the **Configure your new project** window, type or enter *WhatIsYourName* in the **Project name** box. Next, choose **Create**.
205+
Then, in the **Configure your new project** window, type or enter *CalculateThis* in the **Project name** box. Next, choose **Create**.
206206

207207
1. Enter the following code between the `Module Program` line and `End Module` line:
208208

0 commit comments

Comments
 (0)