I'm looking for good engine, capable of translate C# source code to JavaScript-analog.

link|improve this question

7  
C# and JavaScript are totally different languages. This can't be done in any meaningful way. – Polynomial Oct 5 '11 at 20:29
ASP.NET I mean that's pretty much what it does (sort of).... – Jesus Ramos Oct 5 '11 at 20:30
1  
Why do you want to do this? – Xeon06 Oct 5 '11 at 20:32
1  
I haven't seen any tool close to "near-good" quality that make conversions between Java & c# which are known "similar" languages. And you want c# -> JavaScript. – L.B Oct 5 '11 at 20:50
1  
You might want to compile C# to MSIL and then translate the MSIL directly to JavaScript. Search the internet for "MSIL to JavaScript compiler" and you should find a number of different projects. – Eric Lippert Oct 5 '11 at 21:34
show 2 more comments
feedback

closed as not a real question by Joe Tuskan, StackUnderflow, Jeff Atwood Oct 6 '11 at 8:45

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

4 Answers

up vote 2 down vote accepted

You should be aware, that for many problems/projects, what you are proposing makes little sense. However, if you would like to code your Javascript in C#, this is the best tool I know for the job: http://projects.nikhilk.net/ScriptSharp

If you want this because you dislike Javascripts syntax, verbosity, classes, and type rules (or lack thereof); perhaps you should also look at CoffeeScript. CoffeeScript is all the good things in Javascript, and it compiles to Javascript.

link|improve this answer
feedback

Try Script#. It even has jQuery & unit testing support for JavaScript - from C#.

link|improve this answer
feedback

Script#: http://projects.nikhilk.net/ScriptSharp

Have followed this for a while as it was pretty compelling to me a couple of years ago. The guy is brilliant and its a legit project, check it out.

link|improve this answer
feedback

Here a list of languages that compile to javascript, including a few c# options.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.