按照业界的惯例,我们用一个最简单的例子——“Hello World”,来开始我
们的Emit之旅。例子的相关代码及注释如下:
using System; using System.Collections.Generic; using System.Text; using System.Reflection.Emit; namespace EmitExamples.HelloWorld { class Program { /// <summary> /// 用来调用动态方法的委托 /// </summary> private delegate void HelloWorldDelegate(); static void Main(string[] args) { //定义一个名为HelloWorld的动态方法,没有返回值,没有参数 DynamicMethod helloWorldMethod = new DynamicMethod("HelloWorld", null, null); //创建一个MSIL生成器,为动态方法生成代码 ILGenerator helloWorldIL = helloWorldMethod.GetILGenerator(); //将要输出的Hello World!字符创加载到堆栈上 helloWorldIL.Emit(OpCodes.Ldstr, "Hello World!"); //调用Console.WriteLine(string)方法输出Hello World! helloWorldIL.Emit(OpCodes.Call, typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string) })); //方法结束,返回 helloWorldIL.Emit(OpCodes.Ret); //完成动态方法的创建,并且获取一个可以执行该动态方法的委托 HelloWorldDelegate HelloWorld = (HelloWorldDelegate)helloWorldMethod.CreateDelegate(typeof(HelloWorldDelegate)); //执行动态方法,将在屏幕上打印Hello World! HelloWorld(); } } }
这里我们只是用这个例子让大家对Emit以及IL有个直观的了解,其中用到的方
法将在以后的章节中具体讲解
本文配套源码
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索helloworld
, 方法
, 动态
, emit
, #DynamicMethod
, ILGenerator
, World
, Hello
$emit
,以便于您获取更多的相关知识。
时间: 2024-10-16 22:21:36