码迷,mamicode.com
首页 > 其他好文 > 详细

ilasm.exe与ildasm.exe的使用(编译与反编译)

时间:2014-08-07 21:58:40      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:blog   http   使用   os   io   文件   ar   div   

首先打开cmd命令。cd 到 C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin

看看你有没这2个工具,没的话自己百度找下

然后把要查看的 dll文件或者exe文件拉进来这里面(因为我们是要用命令,你直接打开ildasm.exe也可以找到各目录打开)

比如 text.dll  (里面有console.writeline("hello word"))

ildasm text.dll 打开dll 找到方法可以查看

ildasm text.dll /output:text.il  按回车就编译好一个il文件(可用记事本打开并且编辑hello word保存)

然后用ilasm工具反汇编成 dll或者exe 文件

ilasm text  按回车自动查找text4.il 文件并且编译成 text4.exe

或 ildasm text /dll 可以编译成 text.dll 文件(记得先删除原来的text4.dll)

ilasm.exe与ildasm.exe的使用(编译与反编译),布布扣,bubuko.com

ilasm.exe与ildasm.exe的使用(编译与反编译)

标签:blog   http   使用   os   io   文件   ar   div   

原文地址:http://www.cnblogs.com/changyehppy/p/3897958.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!