我想逐步调试我的代码,但只要我在Visual Studio 2015中单击step into选项,调试器就会跳过我的函数方法。
我的代码
_watch.Created += this.FileCreated;
public void FileCreated(object sender, FileSystemEventArgs e1)
{
// some code
}
我在_watch.Created += this.FileCreated;
附加了一个断点,然后我点击了步骤选项,但调试器跳过了FileCreated
方法。谁能告诉我如何介入这种方法?
答案 0 :(得分:1)
在
上设置一个断点_watch.Created += this.FileCreated;
不会触发该方法。它指定在调用Created
时运行的方法。
你想在
上设一个断点public void FileCreated(object sender, FileSystemEventArgs e1)
然后,当调用Created
事件时,您的断点将会命中,您可以进入该方法。
评论链接: