2013年11月13日
摘要: 重现代码:var dmFoo = new DynamicMethod("Foo", typeof(void), Type.EmptyTypes);var ilFoo = dmFoo.GetILGenerator();//...var label = ilFoo.DefineLabel();//...var dmBar = new DynamicMethod("Bar", typeof(void), Type.EmptyTypes);var ilBar = dmBar.GetILGenerator();//...ilBar.MarkLabel(label) 阅读全文
posted @ 2013-11-13 23:54 Zhenway 阅读(390) 评论(9) 推荐(0) 编辑