Exemplo n.º 1
0
 public MethodInstructionWithMonoCecilCil(OpCode opCode, int token, MethodBase method)
 {
     this.opCode     = opCode;
     instructionType = instructionTypes[opCode];
     this.token      = token;
     this.method     = method;
 }
 public MethodInstructionWithReflectionEmit(OpCode opCode, int token, MethodBase method)
 {
     this.opCode     = opCode;
     instructionType = instructionTypes[opCode];
     this.token      = token;
     this.method     = method;
 }