unity Interception 可以用来拦截方法,它可以捕获被拦截方法的参数值。
我想要的是在截获的方法中记录局部变量的值。例如
更新
public void CopyBlogPost(int id){
var oldblogPost = GetBlogPost(id);
//log details about old blog post, including name, date, id etc.
//copy post
//log details about new blog post, including name, date, id etc.
}
有没有可以用于这种情况的工具?
更新
正如@Aron 建议的那样, Mono.Cecil 可能会提供该功能。