Is it possible to decompile a .NET 2.0 binary file (*.exe) to some sort of readable code? Or if not, just extract some information from it (for example method names, debugging information, etc.)?
feedback
|
|
You might want to look at Reflector, it should show you the assembly as C# or IL. EDIT: With the increased cost of Reflector, I have switched to ILSpy for my day to day needs. | |||||||||||
feedback
|
|
Search for Lutz Roeder and you'll find : | |||
|
feedback
|
|
I will Quote myself from this question earlier today:
Regarding C#, you have already been given a lot of great tools like Reflector. However, if the Code is obfuscated you are going to have problems reading it. | |||
|
feedback
|
|
Yes. First all .net libraries have manifests with type information it them. They can be interrogated problematically using reflection, or by using tools like reflector. Take a look at the system.reflection namespace for the classes you will need to take a look at. | |||
|
feedback
|