Zerotoinfinity
Zerotoinfinity

Reputation: 6540

Read assembly in .net

I am using asp.net with C#. I have a application deployed on the server [published], now I want to see the code for that website, As far as I know I can read assembly to see the code.

please let me know how to acheive it.

Thanks in advance.

Upvotes: 2

Views: 332

Answers (2)

Stephen Cleary
Stephen Cleary

Reputation: 457147

Reflector is the best choice if you just need to see the code. If you need to write a program that can read the code, I recommend the Common Compiler Infrastructure.

Upvotes: 0

Oded
Oded

Reputation: 499262

You can use the RedGate .NET Reflector to decompile assemblies - it reconstructs the code as best it can. Gets pretty close.

Upvotes: 6

Related Questions