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?
|
feedback
|
|
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. | |||||||||||||||||
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. | |||
|
feedback
|
|
Reflector is no longer free... But a few companies like DevExtras and JetBrains have created free alternatives: | |||||||
feedback
|
|
Telerik JustDecompile is free and has a feature to create projects from .NET assemblies. | |||
|
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
| |||
|
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 | |||
|
feedback
|