本文示例源代码或素材下载
按照业界的惯例,我们用一个最简单的例子——“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有个直观的了解,其中用到的方法将在以后的章节中具体讲解
系列文章:
Emit学习-基础篇-基本概念介绍
Emit学习-基础篇-为动态类添加属性、构造函数、方法
Emit学习-答疑篇-Call和Callvirt的区别
Emit学习-答疑篇-值类型和引用类型在使用时的区别
Emit学习-基础篇-使用循环
Emit学习-进阶篇-定义事件
Emit学习-进阶篇-异常处理
版权与免责声明
1、本站所发布的文章仅供技术交流参考,本站不主张将其做为决策的依据,浏览者可自愿选择采信与否,本站不对因采信这些信息所产生的任何问题负责。
2、本站部分文章来源于网络,其版权为原权利人所有。由于来源之故,有的文章未能获得作者姓名,署“未知”或“佚名”。对于这些文章,有知悉作者姓名的请告知本站,以便及时署名。如果作者要求删除,我们将予以删除。除此之外本站不再承担其它责任。
3、本站部分文章来源于本站原创,本站拥有所有权利。
4、如对本站发布的信息有异议,请联系我们,经本站确认后,将在三个工作日内做出修改或删除处理。
请参阅权责声明!