up vote 51 down vote favorite
28
share [g+] share [fb]

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?

link|improve this question

feedback

7 Answers

up vote 67 down vote accepted

Reflector and its add-in FileDisassembler.

Reflector will allow to see the source code. FileDisassembler will allow you to convert it into a VS solution.

link|improve this answer
1  
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
2  
@musigenesis: No prob, that is what we are here for... I think... – GEOCHET Oct 7 '08 at 18:37
1  
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. – GEOCHET Oct 8 '08 at 11:49
feedback

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|improve this answer
Thanks, but a little late ;) – GEOCHET Oct 7 '08 at 18:33
feedback

Reflector is no longer free... But a few companies like DevExtras and JetBrains have created free alternatives:

DevExtras CodeReflect

JetBrains DotPeek

link|improve this answer
Reflector is like 35$. Breaking the bank I know, but its worth 10x that. – StingyJack Oct 5 '11 at 16:55
actually the alternatives listed here work better than Reflector, at least for some kinds of obfuscation. – Tener Oct 10 '11 at 11:12
It's worth adding Telerik JustDecompile to the list of free .NET assembly decompilers, too. telerik.com/justdecompile – Todd Oct 13 '11 at 21:12
feedback

You want reflector.

link|improve this answer
feedback

Telerik JustDecompile is free and has a feature to create projects from .NET assemblies.

link|improve this answer
feedback

When Red Gate said there would no longer be a free version of .Net Reflector, I started using ILSpy and Telerik's JustDecompile. I have found ILSpy to decompile more accurately than JustDecompile (which is still in Beta). Red Gate has changed their decision and still have a free version of .Net Reflector, but now I like ILSpy.

From the ILSpy website (http://www.ilspy.net/):

ILSpy is the open-source .NET assembly browser and decompiler.

ILSpy Features

  • Assembly browsing
  • IL Disassembly
  • Decompilation to C#
  • Supports lambdas and 'yield return'
  • Shows XML documentation
  • Saving of resources
  • Search for types/methods/properties (substring)
  • Hyperlink-based type/method/property navigation
  • Base/Derived types navigation
  • Navigation history
  • BAML to XAML decompiler
  • Save Assembly as C# Project
  • Find usage of field/method
  • Extensible via plugins (MEF)
link|improve this answer
feedback

.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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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