mono
- http://www.mono-project.com/Compiling_Mono_From_Tarball
- http://mono-project.com/Main_Page
- http://www.mono-project.com/Libgdiplus
- http://download.mono-project.com/sources/libgdiplus/
- install libgnomeui-devel
- http://www.cnblogs.com/xiaodiejinghong/archive/2013/04/01/2994216.html
-
What is the difference between dmcs, gmcs and smcs
They are the same compiler with three different set of defaults.
- dmcs: references the 4.0-profile libraries (the APIs as defined in .NET 4.0) and supports C# 4.0.
- gmcs: references the 2.0-profile libraries (the APIs as defined in .NET 2.0 and .NET 3.5) and exposes the full C# 3.0 language.
- smcs: references the 2.1-profile libraries (the APIs defined for Silverlight) and exposes the full C# 3.0 language. This is the compiler used for creating Silverlight/Moonlight applications.