18 lines
215 B
Markdown
Raw Normal View History

# C# Example
To compile:
```sh
sudo pacman -S dotnet-host dotnet-runtime dotnet-sdk
dotnet build
```
To run:
```sh
./My/bin/Debug/net8.0/MyClass
# or
sudo pacman -S mono
mono My/bin/Debug/net8.0/MyClass.dll
```