读取.net中的程序集
我正在使用 asp.net 和 C#。 我在服务器上部署了一个应用程序[已发布],现在我想查看该网站的代码,据我所知,我可以阅读程序集来查看代码。
请让我知道如何实现它。
提前致谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 RedGate .NET Reflector 反编译程序集 - 它会以最佳方式重建代码可以。非常接近。
You can use the RedGate .NET Reflector to decompile assemblies - it reconstructs the code as best it can. Gets pretty close.
如果您只需要查看代码,那么 Reflector 是最佳选择。如果您需要编写一个可以读取代码的程序,我推荐通用编译器基础结构。
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.