vote up 17 vote down star
11

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?

flag

4 Answers

vote up 34 vote down check

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.

link|flag
Your post on FileDisassembler appeared as the page refreshed when I made my answer on FileDisassembler :-) You win. – ProfK Oct 7 '08 at 18:33
His Reflector link works, too, which is what took it. Thanks for helping me look less stupid to the client. – MusiGenesis Oct 7 '08 at 18:35
@musigenesis: No prob, that is what we are here for... I think... – Rich B Oct 7 '08 at 18:37
My copy of Reflector has an "Export..." option and I have no plug-ins installed. It creates a VS project with all the source code and resources. So why is everyone suggesting FileDisassembler? It is better? – Lucas Oct 7 '08 at 22:10
Lucas: Out of the box, I have not seen reflector able to do this. FileDisassembler has always been the only way. This may have changed in recent history though I guess. I will check it out. – Rich B Oct 8 '08 at 11:49
vote up -2 vote down

.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

link|flag
vote up 12 vote down

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.

link|flag
Thanks, but a little late ;) – Rich B Oct 7 '08 at 18:33
vote up 6 vote down

You want reflector.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.