How to run C# project under Linux

后端 未结 3 1753
余生分开走
余生分开走 2020-12-30 21:44

Do you know any ways to run a C# project under Linux. Are there any framewoks or libraries for this?

3条回答
  •  隐瞒了意图╮
    2020-12-30 22:14

    Like others have already said, you can run .NET applications on Mono. If your applications use Platform Invocation (P/Invoke) to call native code, you may run into some trouble if there is no Mono implementation of the native library. To check whether your application does that (or uses APIs that haven't been implemented in Mono yet), you can use the Mono Migration Analyzer (MoMA).

提交回复
热议问题