IL汇编代码,
.assembly extern mscorlib {}
.assembly MathLib
{.ver 1 : 0 : 1 : 0
}.module MathLib.dll.namespace MyMath
{ .class public ansi auto MathClass extends [mscorlib]System.Object{ .method public int32 GetSquare(int32) cil managed{.maxstack 3ldarg.0 // 加载对象的 this 指针到堆栈上ldarg.1 // 实例方法的实际的参数索引总是从 1 开始ldarg.1mulret }}
}
构建为一个dll如下;dll包含一个方法,计算一个整数的平方并返回值;
然后做一个测试程序;
using System;
using MyMath;class Program
{static void Main(string[] args)
{int a=9;int i = MathClass.GetSquare(a); Console.WriteLine(i); Console.ReadKey();
}
}
命令行构建此测试程序;
命令行构建时引用到外部的dll需要用 /r 指定dll文件名,见,
C# csc构建dll 和 csc构建时指定dll_bcbobo21cn的博客-CSDN博客
然后出现下图错误;
一时还不知道怎么弄;
先学习一下IL汇编指令;
ldarg.n
把第n个参数装入堆栈;在非静态函数中,第0个参数是一个隐含的参数,代表this;
mul指令就是乘法;