Ejemplo n.º 1
0
 static bool CheckLdloc(IList <Local> locals, Instr instr, Local local)
 {
     if (!instr.IsLdloc())
     {
         return(false);
     }
     if (Instr.GetLocalVar(locals, instr) != local)
     {
         return(false);
     }
     return(true);
 }