我想逐步调试我的代码,但是每当我单击 Visual Studio 2015 中的 step into 选项时,调试器都会跳过我的函数方法。
我的代码
_watch.Created += this.FileCreated;
public void FileCreated(object sender, FileSystemEventArgs e1)
{
// some code
}
我附加了一个断点_watch.Created += this.FileCreated;,然后单击了 step into 选项,但调试器跳过了该FileCreated方法。谁能告诉我如何进入这种方法?
PIPIONE
相关分类