Running Windows Form Application on Linux

c#, linux, unix, user-interface, winforms

Solution

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

- Mono is an Open source impementation of .NET for Linux

- Mono is well documented and also supports LINQ, threading and most of the features of .NET.

- It also lets you import dll files and use introp services.

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/

Problem

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!

Original source