coffeecat
coffeecat

Reputation: 41

Running Windows Form Application on Linux

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!

Upvotes: 4

Views: 9699

Answers (1)

Subash
Subash

Reputation: 147

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/

Upvotes: 4

Related Questions