Read assembly in .net

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

please let me know how to do this.

Thanks in advance.

+2


a source to share


2 answers


You can use RedGate .NET Reflector to decompile assemblies - it recovers the code as best as possible. Very close.



+6


a source


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



0


a source







All Articles