Get started with .NET
This article teaches you how to create and run a "Hello World!" app with .NET.
Create an application
First, download and install the .NET SDK on your computer.
Next, open a terminal such as PowerShell, Command Prompt, or bash.
Type the following commands:
dotnet new console -o sample1
cd sample1
dotnet run
You should see the following output:
Hello World!
Congratulations! You've created a simple .NET application.
Next steps
Get started on developing .NET applications by following a step-by-step tutorial or by watching .NET 101 videos on YouTube.
Cộng tác với chúng tôi trên GitHub
Bạn có thể tìm thấy nguồn cho nội dung này trên GitHub, nơi bạn cũng có thể tạo và xem lại các vấn đề và yêu cầu kéo. Để biết thêm thông tin, hãy xem hướng dẫn dành cho người đóng góp của chúng tôi.