Decompiling .NET 2.0 binary

.net, decompiling, reverse-engineering

Solution

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.

Problem

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.)?

Original source

Related problems