# Console exe, custom name mcs Program.cs -out:myapp.exe # Console exe, custom name mcs -pkg:gtk-sharp-3.0 Program.cs -out:programwin.exe # Windowed (no console) exe, custom name mcs -target:winexe -pkg:gtk-sharp-3.0 Program.cs -out:programwin.exe # Class library (DLL) mcs -target:library Library.cs -out:MyLibrary.dll # Program referencing that DLL mcs Consumer.cs -r:MyLibrary.dll -out:Consumer.exe