Skip to content

Latest commit

 

History

History

csharp

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Install (MacOS)

Open Extensions Ctrl+X in Visual Code then type C# in the search field and install C# plugin C# for Visual Studio Code (powered by OmniSharp) by Microsoft.

Install dotnet:

brew install dotnet

Create the project:

dotnet new console -o csharp
cd csharp

Build the project:

dotnet build

Run the project:

dotnet run