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.
You can use the RedGate .NET Reflector to decompile assemblies - it reconstructs the code as best it can. Gets pretty close.
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.
精彩评论