Where can I find a Java to C# converter? [closed]

Even if there is such a tool, I’d highly recommend you to do the conversion by hand. Automatic converters will often faithfully reproduce the code, but ignore idioms – because they’d be really, really hard to get right.

Furthermore, the differences between generics in .NET and Java could lead to some very different decisions in the two codebases.

Really, you’ll be better off doing it by hand.

Leave a Comment