Mono C# compiling can be done for following following runtimes
- mcs: compiler to target 1.1 runtime.
- gmcs: compiler to target the 2.0 runtime.
"gmcs -t:library -out:sss.dll -recurse:Com.test.foo.SSL\*.cs"
To execute the compiled exes use the following command.
"mono foo.exe "
To compile with gtk# for UIs use the following command.
mcs -pkg:gtk-sharp-2.0 -recurse:Com.test.foo.SSL\*.cs