tags:

views:

620

answers:

7

Is there C# look-alike for Linux? What about a compiler?

+47  A: 

You could actually use C# with Mono.

hangy
+5  A: 

If you don't want to use Mono (which is a good idea IMO), I think Java may be your closest alternative.

Galwegian
Did someone hit you with a Java stick three days ago...:)
Why isn't Mono a good idea?
Giovanni Galbo
@Giovanni - I said I *do* think it's a good idea!
Galwegian
+4  A: 

Look-alike? I am assuming you mean a similar language? You could always just use C# with Mono, a multi-platform port of the .Net framework

Alarion
+1  A: 

You could always use Boo DSL on Mono to construct a C# clone. But then again it would probably be easier to use C# directly on Mono itself I guess ;)

Thomas Hansen
+3  A: 

Mono is the way to go in this case.

Chatu
+2  A: 

I found that going from Java to C# was very easy. Maybe you could try working with Java? Of course you'd have to learn a whole new set of libraries, so there's a learning curve, but the languages felt pretty similar as I recall (it's been a while)

rotard
+9  A: 

There is another language called Vala. It's not well known, but as you can see from the page, an interesting amount of projects have been produced already.

Daishiman