Running Windows Form Application on Linux

前端 未结 1 464
北恋
北恋 2021-01-20 21:34

I have built a Windows Form Application GUI on Microsoft Visual Studio. May I know what are the steps needed to run my application in Linux Environment? Thanks in advance!

相关标签:
1条回答
  • 2021-01-20 22:12

    Have you done some research about Mono? Few things that you need to know :

    1. Mono is an Open source impementation of .NET for Linux
    2. Mono is well documented and also supports LINQ, threading and most of the features of .NET.
    3. It also lets you import dll files and use introp services.
    4. First analyze your code using MoMA (Mono Migration Analyzer)---

      http://www.mono-project.com/docs/tools+libraries/tools/moma

    Warning: LINUX uses "/" as directory separator while Windows uses "\".

    More info :

    http://www.mono-project.com/

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