mono

  1. http://www.mono-project.com/Compiling_Mono_From_Tarball
  2. http://mono-project.com/Main_Page
  3. http://www.mono-project.com/Libgdiplus
  4. http://download.mono-project.com/sources/libgdiplus/
  5. install libgnomeui-devel
  6. http://www.cnblogs.com/xiaodiejinghong/archive/2013/04/01/2994216.html
  7. 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.
原文地址:https://www.cnblogs.com/dmdj/p/3417076.html