Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

converting java projects to c# with visual studio 2010

i remember that previous versions of visual studio contained a converter, that automatically attempt to convert java projects to the corresponding c# code.

however in visual studio 2010 beta 2 i cant find this anymore?

has it been removed?

thanks!

like image 486
clamp Avatar asked Nov 08 '09 10:11

clamp


1 Answers

The Java Language Conversion Assistant has been removed from Visual Studio 2008 and future versions. You have few options:

  • Install VS 2003/2005 and run the assistant
  • Purchase a commercial solution
  • Do the conversion by hand
  • Use ikvmc to compile jar files into managed .NET assemblies (personally I've done this with success)
like image 55
Darin Dimitrov Avatar answered Oct 17 '22 21:10

Darin Dimitrov