从 Click Once 应用程序获取源代码
是否可以将可执行的 Click Once 应用程序反编译为原始源代码(即 .cs 文件)? 使用 C#.NET Visual Studio 2010。
Is it possible to de-compile the executable Click once application into the original source code i.e. the .cs file?
Using C#.NET Visual Studio 2010.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法将其反编译为原始 .cs 文件,但您可以使用众多反编译器之一(例如 Reflector)将可执行文件反编译为与原始源代码类似的内容,前提是它没有被混淆或以其他方式保护以防止这种情况发生。
但是,这还需要 Visual Studio 之外的工具。 Visual Studio 没有内置反编译器(Ildasm,它是框架的一部分)。
You can't decompile it to the original .cs file, but you could use one of the many decompilers (such as Reflector) to decompile the executable into something similar to the original source, provided it wasn't obfuscated or otherwise protected in a means that prevents this.
This will require tools in addition to Visual Studio, however. Visual Studio doesn't have a built-in decompiler (other than Ildasm, which is part of the framework).