03把IL编译成可执行文件

1、在记事本中编写IL代码如下:

.assembly HelloWorld{}
.assembly extern mscorlib{}
 
.method public static void Main(string[] args) 
{
    .entrypoint
    .maxstack 8
 
    ldstr "Hello,World"
    call void [mscorlib]System.Console::WriteLine(string)
    call valuetype [mscorlib]System.ConsoleKeyInfo [mscorlib]System.Console::ReadKey()
    pop
    ret
}

2、保存为MyFirstIL.il文件,位置在F:\学习\练习\NET之美\MyFirstIL.il

3、开始→所有程序→Microsoft Visutal Studio 2012→Visual Stuio Tools→开发人员命令提示

03把IL编译成可执行文件

4、最终把MyFirstIL.il文件编译成了MyFirstIL.exe文件。
03把IL编译成可执行文件

ILASM的其它用法:

ilasm new.il /output=test.exe /exe

ilasm 源文件.il /output=目标文件.dll /dll

上一篇:sqlserver2008debug存储过程


下一篇:STM32下载Bin文件的几种方式