internal void Invoke(MethodType m) { Insert(Instruction.MethodCall(m)); }
internal static Instruction MethodCall(MethodType operand) { return(new Instruction(OpType.OpMethodCall, operand)); }
internal MethodCallArgumentType(MethodType m) : base(typeof(MethodType), m.PublicName, null) { }