What can C# can do?
- Application development(Xamarin)
- Game development(Unity, UnrealEngine)
- Web application development C# can be used universally.
Getting started guide with official documentation
Install
- Install C# Dev Kit from the Visual Sdudio Marketplace.→C# extension is installed automatically.
- Sign in with Microsoft to use Dev Kit
- Install .Net Coding Pack from official document(https://code.visualstudio.com/docs/csharp/get-started)
- Open folder
mkdir hello
cd hello
code .
Create a Hello World app
-
Create a Hello World app by using the terminal
- Open a terminal/command prompt and navigate to
hello/
. -
Enter the following command in the command shell
dotnet new console
-
Run the app by entering the following command in the command shell:
dotnet run
- Open a terminal/command prompt and navigate to
The resulting output to the terminal is "Hello, World!"
Top comments (0)