How does Mono work

后端 未结 8 665
一向
一向 2020-12-22 19:38

I have used C# in Visual Studio with .NET, and I have played around a little with Mono on openSUSE Linux, but I don\'t really understand how it works.

If I write an

相关标签:
8条回答
  • 2020-12-22 20:04

    To further Michael's response, I believe you will have to recompile on Mono for the app to run on the Mono runtime. Exceptions may exist. I've only played around with Mono just a bit, and I've always re-compiled the source. I've never tried to run a .NET app directly on Mono.

    Also, Mono 1.9 is supposed to be fully .NET 2.0 compliant. Mono Olive and Moonlight are supposed to add .NET 3.0 (less WPF) and Silverlight functionality.

    0 讨论(0)
  • 2020-12-22 20:07

    You can in fact run a .NET .exe file with Mono on Linux. This does not require Wine. In fact, Mono compiles programs to .exe files, which can run either with Mono on Linux or as an executable on Windows.

    0 讨论(0)
提交回复
热议问题