Click here to Skip to main content
15,922,427 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
how can i convert entire c# project to Vb?
Posted

 
Share this answer
 
v2
There are two comprehensive tools which will do the job perfectly.

You can use Reflector or its open-source replacement ILSpy or one of similar tools:
http://en.wikipedia.org/wiki/.NET_Reflector[^],
http://ilspy.net/[^].

By the way, additionally, this is one of effective tools to learn CIL. It can be very useful, and I don't know a good reference on the language. CIL knowledge is very important, in particular, for using System.Reflection.Emit, an extremely powerful library.

You can write code in one language, compile it, load the assembly with ILSpy, choose another language, and decompile the code part you need. The accuracy of the results is very good. And even the readability of the project files and their structure is excellent: clear and accurate.

And this is a stand-along open-source code convertor: http://codeconvert.codeplex.com/[^].

—SA
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900