I wrote a C# application for a client a couple of years ago, but I no longer have the source code. All I have is the EXE that I deployed on the client's PC. Is there a way I can generate C# source code from the EXE?
|
11
|
|
|
|
|
|
Reflector and it's add-in FileDisassembler. Reflector will allow to see the source code. FileDisassembler will allow you to convert it into a VS solution. |
||||||||||
|
|
|
.NET = Open Source. :) There is also an addin for Reflector that lets you export the DLL or EXE to code file. Don't have the name at hand but there are a couple. I see someone already posted this information |
||
|
|
|
|
Reflector and the File Disassembler add-in from Denis Bauer. It actually produces source projects from assemblies, where Reflector on its own only displays the disassembled source. |
||
|
|
|
You want reflector. |
||
|
|
