Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert full C# project to vb.net? [closed]

Tags:

How to convert full C# project to vb.net ?

like image 584
D Infosystems Avatar asked Dec 30 '10 04:12

D Infosystems


People also ask

Can you convert C++ to C?

It is possible to implement all of the features of ISO Standard C++ by translation to C, and except for exception handling, it typically results in object code with efficiency comparable to that of the code generated by a conventional C++ compiler.

WHAT IS &N in C?

*&n is equivalent to n . Thus the value of n is printed out. The value of n is the address of the variable p that is a pointer to int .

How do I convert assembly to C++?

For this go to project settings -> C/C++ -> Output Files -> ASM List Location and fill in file name. Also select "Assembly Output" to "Assembly With Source Code". Compile the program and use any third-party debugger. You can use OllyDbg or WinDbg for this.


1 Answers

Check out SharpDevelop, (specifically V4.4, which is the last version where this was supported). It has the feature you are asking for and its free.

Just go to Project > Convert

Project > Convert Screenshot

like image 55
Chandu Avatar answered Oct 08 '22 11:10

Chandu