IL汇编字符串连接

在此实现了一个基本的IL汇编程序;

了解MSIL汇编和IL汇编评估堆栈_bcbobo21cn的博客-CSDN博客

它用了下面两句来在屏幕输出字符串,

    ldstr "I am from the IL Assembly Language..."

    call void [mscorlib]System.Console::WriteLine (string)

下面来看一下IL汇编如何实现字符串连接;

我也不知有没有指令,看到有一句,

    call string [mscorlib]System.String::Concat(object, object)

 看上去是实现字符串连接,看一下,IL汇编代码如下,

 
.assembly extern mscorlib {}
 
 .assembly Test
 {
     .ver 1:0:1:0
 }
 .module test.exe
  
 .method static void main() cil managed
 {
     .maxstack 1
     .entrypoint
     
     ldstr "I am AAA and ... "
     ldstr "BBB and CCC。 "
     
     call string [mscorlib]System.String::Concat(object, object)
     call void [mscorlib]System.Console::WriteLine (string)
     ret
 }

构建运行一下;

IL汇编字符串连接_第1张图片

构建出了exe,但是运行出错;

把 call string [mscorlib]System.String::Concat(object, object) 改为

    call string [mscorlib]System.String::Concat(string, string)

也是一样的情况;有时间继续;

你可能感兴趣的:(.Net,汇编语言,汇编,IL汇编)