

Replace the contents of the Main method in Program.cs, which is the line that calls Console.WriteLine, with the following code: Console.WriteLine("What is your name?") Ĭonsole.WriteLine($"Press any key to exit.") The program displays "Hello, World!" and ends.Įnhance the application to prompt the user for their name and display it along with the date and time. Run the following command in the Terminal: dotnet run But it's available in C# 10, and whether you use it in your programs is a matter of style preference. Most existing C# programs don't use top-level statements, so this tutorial doesn't use this new feature. In the latest version of C#, a new feature named top-level statements lets you omit the Program class and the Main method. Any command-line arguments supplied when the application is launched are available in the args array. Main is the application entry point, the method that's called automatically by the runtime when it launches the application. The code defines a class, Program, with a single method, Main, that takes a String array as an argument. NET Core at the Select environment prompt.

The folder name becomes the project name and the namespace name by default. Then click Select Folder ( Open on macOS). In the Open Folder dialog, create a HelloWorld folder and select it.

NET console app project named "HelloWorld".

For information about how to install extensions on Visual Studio Code, see VS Code Extension Marketplace.Ĭreate a.
