Is there C # for Linux?

Is there C # for Linux? What about the compiler?

+6
compiler-construction c # linux
source share
7 answers

There is another language called Vala . This is not well known, but, as you see on the page, an interesting number of projects have already been created.

+11
source share

In fact, you can use C # with Mono .

+48
source share

If you don't want to use Mono, I think Java might be your closest alternative.

+6
source share

double? I assume you mean a similar language? You can always use C # with Mono , the multi-platform .Net framework port

+5
source share

Mono is the way to go in this case.

+4
source share

I found that switching from Java to C # was very simple. Maybe you can try working with Java? Of course, you will need to study a whole set of libraries, so there is a learning curve, but the languages ​​were very similar, as I recall (it was time).

+2
source share

You can always use Boo DSL in Mono to create a C # holon. But then again, it might be easier to use C # directly on Mono, I think;)

+1
source share

All Articles