Developing C# on Linux

后端 未结 7 1025
挽巷
挽巷 2020-12-02 08:45

I\'d like to know if there are effective and open source tools to develop C# applications on Linux (Ubuntu). In particular, I have to develop Windows Forms applications.

7条回答
  •  盖世英雄少女心
    2020-12-02 09:25

    Mono is a runtime environment that can run .NET applications and that works on both Windows and Linux. It includes a C# compiler.

    As an IDE, you could use MonoDevelop, and I suppose there's something available for Eclipse, too.

    Note that WinForms support on Mono is there, but somewhat lacking. Generally, Mono developers seem to prefer different GUI toolkits such as Gtk#.

提交回复
热议问题