Skip to content

yevhenii-sir/CSharp

Repository files navigation

CSHARP LIBRARY

The repository of the code of my programs in C#


Compiling your C# code with Mono

To compile, use csc:

csc program.cs

The compiler will create “program.exe”, which you can run using:

mono program.exe

Installing .NET and Mono on (Ubuntu 20.04)

Full information about .NET and Mono can be found at the link .NET, link Mono

To install the .NET SDK 5.0, run the command in a terminal:

sudo apt-get update; \
  sudo apt-get install -y apt-transport-https && \
  sudo apt-get update && \
  sudo apt-get install -y dotnet-sdk-5.0

And to install Mono commands:

sudo apt install mono-devel

Installing the JetBrains Rider development environment on Ubuntu

To do this, run the commands:

sudo apt update
sudo apt install snapd

sudo snap install rider --classic

About

The library of the code of my programs in C#

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages