在 visual studio 2015 年进入 skips 方法

step into skips method in visual studio 2015

我想逐步调试我的代码,但是每当我在 Visual Studio 2015 中单击进入选项时,调试器都会跳过我的函数方法。

我的代码

   _watch.Created += this.FileCreated;

   public void FileCreated(object sender, FileSystemEventArgs e1)
   {
      // some code
   }

我在 _watch.Created += this.FileCreated; 上附加了一个断点,然后单击进入选项,但调试器跳过了 FileCreated 方法。谁能告诉我如何进入这个方法?

设置断点

_watch.Created += this.FileCreated;

不会触发该方法。它在调用 Created 时将方法分配给 运行。

您想在

上设置一个断点
public void FileCreated(object sender, FileSystemEventArgs e1)

然后,当 Created 事件被调用时,您的断点将命中,您可以进入该方法。

来自评论的链接:

Raising and Handling Events MSDN

Examples of raising and consuming events