clamp
clamp

Reputation: 34016

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!

Upvotes: 6

Views: 9445

Answers (2)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038810

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)

Upvotes: 13

Hannoun Yassir
Hannoun Yassir

Reputation: 21192

I think that was visual studio 2005 , as far as i know it doesn't exist on 2008 or 2010

Upvotes: 2

Related Questions