靠近IL用DynamicMethod简单实现方法

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.Reflection.Emit;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            DynamicMethod dynamicMethod = new DynamicMethod("Test",null,new Type[]{typeof(System.String)},typeof(System.String).Module);
            ILGenerator iLGenerator = dynamicMethod.GetILGenerator();
            iLGenerator.Emit(OpCodes.Ldarg_0);
            MethodInfo methodInfo = typeof(Console).GetMethod("WriteLine",new Type[]{typeof(System.String)});
            iLGenerator.Emit(OpCodes.Call,methodInfo);   //不明白这句话的意思啊?            iLGenerator.Emit(OpCodes.Ret);
            Action<System.String> action = (Action<System.String>)dynamicMethod.CreateDelegate(typeof(Action<System.String>));
            action("Herry");

            /*
            DynamicMethod dm = new DynamicMethod("Test", null,
    new Type[] { typeof(string) }, typeof(string).Module);
            ILGenerator il = dm.GetILGenerator();
            il.Emit(OpCodes.Ldarg_0);//把参数推到堆栈上
            MethodInfo call = typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string) });
            il.Emit(OpCodes.Call, call);//执行Console.WriteLine方法
            il.Emit(OpCodes.Ret);//结束返回
            Action<string> test = (Action<string>)dm.CreateDelegate(typeof(Action<string>));
            test("henry");
           
            //下面Test1方法和Test完成的方法是一样的,但IL似乎有些不同.
            //主要体现变量设置,对于变量的位置也会影响指令
            dm = new DynamicMethod("Test1", null,
                new Type[] { typeof(string) }, typeof(string).Module);
            il = dm.GetILGenerator();
            il.DeclareLocal(typeof(string));
            il.Emit(OpCodes.Ldarg_0);//把参数推到堆栈上
            il.Emit(OpCodes.Stloc_0);//把值保存到索引为0的变量里
            il.Emit(OpCodes.Ldloc_0);//把索引为0的变量推到堆栈上
            call = typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string) });
            il.Emit(OpCodes.Call, call);//执行Console.WriteLine方法
            il.Emit(OpCodes.Ret);
            test = (Action<string>)dm.CreateDelegate(typeof(Action<string>));
            test("henry");

            //对于下面的方法大家自己推一下,其实很简单.
            //如果看起来有不明白,不防copy到vs.net上然后看指令描述信息:)
            dm = new DynamicMethod("Test2", null,
               new Type[] { typeof(string) }, typeof(string).Module);
            il = dm.GetILGenerator();
            il.DeclareLocal(typeof(string));
            il.Emit(OpCodes.Ldstr, "你好 ");
            il.Emit(OpCodes.Ldarg_0);
            call = typeof(string).GetMethod("Concat", new Type[] { typeof(string), typeof(string) });
            il.Emit(OpCodes.Call, call);
            il.Emit(OpCodes.Stloc_0);
            il.Emit(OpCodes.Ldloc_0);
            call = typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string) });
            il.Emit(OpCodes.Call, call);
            il.Emit(OpCodes.Ret);
            test = (Action<string>)dm.CreateDelegate(typeof(Action<string>));
            test("henry");*/
            Console.Read();
        }
    }
}

转载于:https://www.cnblogs.com/szjdw/archive/2012/04/16/2451450.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值