bigbaldy1128 / DotNetDetour

DotNetDetour is a software package for monitoring and instrumenting API calls

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

目标方法如果被委托包装时Hook失败

DonetCracker opened this issue · comments

如果目标方法被委托包装后再执行则无法成功Hook。
例如:

new Thread(() =>
      {
         // 需要被Hook的目标方法
         TargetMetod();

      }).Start();