在 Visual Studio 2015 中进入跳过方法

我想逐步调试我的代码,但是每当我单击 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方法。谁能告诉我如何进入这种方法?


摇曳的蔷薇
浏览 264回答 1
1回答

PIPIONE

设置断点_watch.Created += this.FileCreated;不会触发该方法。它指定方法在Created被调用时运行。你想设置一个断点public void FileCreated(object sender, FileSystemEventArgs e1)然后,当Created事件被调用时,您的断点将被击中,您可以进入该方法。
打开App,查看更多内容
随时随地看视频慕课网APP