在 vb.net 中打开 exe
我有一个在 vb.net 中构建的旧程序,但丢失了除 .exe 之外的所有文件,我可以在 VB.NET 中打开它吗(将其拖到屏幕中仅打开其部分信息)?
Possible Duplicate:
RedGate Reflector to recover source code from .NET assembly
I have an old program I built in vb.net but have lost all the files except my .exe can i open this in VB.NET (draging it into screen opens aonly some of its information)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Reflector 等工具,您可以尝试对其进行逆向工程以查看其代码。如果它确实在 .Ner 中,您应该能够看到代码。
但是,您不会得到完全相同的代码,而是得到等效的工作代码。变量名称和整体标识等内容可能会丢失。
With tools like Reflector, you can try to reverse engeneer it to see its code. If it's indeed in .Ner, you shoule be able to see the code.
HOWEVER, you won't get the exact same code, but a working equivalent. Things like variable names and overall identation might be missing.