标签:bst 指南 [] generator pre console class AC virt
方法调用指令主要有Call和Callvirt。
调用static或sealed修饰的方法,用Call指令。
调用virtual或abstract修饰的方法,用Callvirt指令。
代码实例:
ilGenerator.Emit(OpCodes.Call, typeof(Console).GetMethod("WriteLine", new Type[] { typeof(int)}));
标签:bst 指南 [] generator pre console class AC virt
原文地址:https://www.cnblogs.com/tkt2016/p/8882365.html