Ejemplo n.º 1
0
 public static bool IsValidInstr(this Instr instr)
 {
     return(IsArithmetical(instr) || instr.IsConv() || IsLdc(instr) || IsLoc(instr) ||
            instr.OpCode == OpCodes.Dup);
 }