Introdução ao .NETGet started with .NET
Este artigo ensina como criar e executar um "Olá, Mundo!"This article teaches you how to create and run a "Hello World!" Aplicativo .NET..NET app.
Se você não tiver certeza do que é o .NET, comece com a introdução ao .net.If you're unsure what .NET is, start with the .NET introduction.
Criar um aplicativoCreate an application
Primeiro, baixe e instale o SDK do .net em seu computador.First, download and install the .NET SDK on your computer.
Em seguida, abra um terminal, como o PowerShell, um prompt de comando ou o Bash.Next, open a terminal such as PowerShell, Command Prompt, or bash. Insira os seguintes dotnet
comandos para criar e executar um aplicativo C#:Enter the following dotnet
commands to create and run a C# application:
dotnet new console --output sample1
dotnet run --project sample1
Você verá esta saída:You see the following output:
Hello World!
Parabéns!Congratulations! Você criou um aplicativo .NET simples.You've created a simple .NET application.
Próximas etapasNext steps
Comece a desenvolver aplicativos .NET seguindo um tutorial passo a passo ou assistindo aos vídeos do .net 101 no YouTube.Get started developing .NET applications by following a step-by-step tutorial or by watching .NET 101 videos on YouTube.