Last updated
sudo apt updatesudo apt install dirmngr gnupg apt-transport-https ca-certificates software-properties-commonsudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EFsudo apt-add-repository 'deb https://download.mono-project.com/repo/ubuntu stable-focal main'sudo apt install mono-completemono --versionnano program2.csusing System;
public class WelcomeMono
{
public statics void Main(string[] args)
{
Console.WriteLine ("Welcome to Mono!");
}
}csc program2.csmono program2.exe