How to get started with Mono in Linux for a beginner?

Josh picture Josh · Apr 28, 2009 · Viewed 16k times · Source

How do I start using Mono in Linux as a beginner when I want to switch from Visual Studio?

Is there some easy way to install it like Visual Studio and get started? So far,with what I've seen,it looks complex to even get started.

Installing and configuring Mono in linux is a lot of work right?

or Is there some distro which I can directly install and get started with applications in Linux?

Answer

Ralph Caraveo picture Ralph Caraveo · Apr 28, 2009

I recently started to dabble in Mono myself and have so far realized that the MonoProject has made huge advancements in this area. It's well worth it to investigate.

With that said, the easiest method is to get setup with a Linux distro that is Mono friendly such as Suse, or Ubuntu. Personally, I tried it using Ubuntu 8.10.

Once you've got your Linux distro setup properly download and install MonoDevelop. This is an open source IDE that's tightly integrated to work with the Mono platform. MonoDevelop was taken as a branch of SharpDevelop and designed to work with the Mono compiler from the ground up.

This is by far the easiest and fastest way to get setup with Mono. The MonoDevelop IDE is very similar to that of Visual C# Express even. It comes complete with Project/Solution management, GUI development using the GTK# framework, an integrated debugger and a host of other features you would expect in an IDE such as code-completion, line numbers, code-folding etc.

The folks at the MonoProject are on to something with this suite of tools.

Hope this helps you get started.

Mono Project Homepage

Mono Develop Homepage