从 Click Once 应用程序获取源代码

发布于 2024-12-05 17:35:20 字数 82 浏览 0 评论 0原文

是否可以将可执行的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哑剧 2024-12-12 17:35:20

您无法将其反编译为原始 .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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文