Hi,
I knw there is a way to convert from 1 managed code to other, but i just want to know how cani use it,
i have a code in vc++ 6.0 and i need it in c#.net form vs 2008.

wat r the ways i can do it..

Thanks...

You can do a 'decent' conversion of any managed code. How you go about is this is by compiling the managed code in to an assembly (your .exe or .dll) and then decompile it in the language you're wanting to convert to.

Get the .NET reflector at:
http://www.red-gate.com/products/reflector/
This will let you decompile assemblies.

[edit]The reflector doesn't always generate code that will compile... and the syntax is sometimes odd because the languages aren't 100% identical. But it saves you ~90% of the leg work.[/edit]

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.