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