Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any conversion tools for porting from Visual J# code to C#?

share|improve this question
this is the first real question on stack overflow :P – Doorknob Apr 29 at 22:36
no there are 2 earlier questions. – Kevin Dente Apr 29 at 23:54
But the first is deleted and the second was a test question. – Doorknob Apr 29 at 23:59

4 Answers

up vote 24 down vote accepted

Have you tried Reflector + FileGenerator to dump the compiled .NET library to C#. The only problem that I can see is that you are going to have a slight amount of clean up for J# specific references and no comments. But it should provide a good clean solution and get you 90% of the way.

share|improve this answer

Nick mentioned Reflector + FileGenerator. That will kind of work. I've tried it and it works partially; but you still have to sift through the code and fix compiler errors, as Reflector doesn't do a perfect job.

JLCA is dead, last I heard. And if your project is J# (e.g. part .NET) it will stumble on .NET things. For example, if you've got any Windows Forms stuff in your J# project, JLCA will puke on it.

Overall, my suggestion would be use Reflector + FileGenerator, fix the compiler errors, and never look back at J#. :-)

Another interesting alternative is Jeroen Frijters's IKVM, which can run real Java on top of .NET. This would work if your J# code is all Java stuff and no .NET stuff or MS-specific Java.

share|improve this answer
2  
It's not really a Mono project so I would put the IKVM webpage: ikvm.net – Kevin Driedger Sep 16 '08 at 14:11

I've used the JLCA (Java Language Conversion Assistant) from Microsoft before. Worked well, but the last release was in 2004.

share|improve this answer

I just used JLCA for some old J# as well as some Eclipse developed projects. Seemed to work well. I just needed to clean up some GUI items after it completed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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