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汇编代码如下,

cpp 复制代码
 
.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
 }

构建运行一下;

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

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

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

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

相关推荐
xiaozhiwise21 小时前
ARM base instruction -- ccmp (immediate)
汇编
zzj_2626103 天前
masm汇编字符串输出演示
汇编
xiaozhiwise4 天前
ARM base instruction -- cls
汇编
R6bandito_4 天前
C/C++常用编译工具链:GCC,Clang
c语言·开发语言·汇编·c++·经验分享·gnu
xiaozhiwise5 天前
ARM base instruction -- cinc
汇编
CYRUS STUDIO6 天前
详解ARM64可执行程序的生成过程
android·c语言·汇编·c++·gdb·arm64
漠北的哈士奇6 天前
32位汇编——通用寄存器
汇编
xiaozhiwise7 天前
ARM base instruction -- bfi
汇编
xiaozhiwise7 天前
ARM base instruction -- adcs
汇编
xiaozhiwise7 天前
ARM base instruction -- adc
汇编