在visual studio 2015中逐步进入跳过方法

时间:2018-06-01 11:17:15

标签: c# visual-studio debugging visual-studio-debugging

我想逐步调试我的代码,但只要我在Visual Studio 2015中单击step into选项,调试器就会跳过我的函数方法。

我的代码

   _watch.Created += this.FileCreated;

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

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

1 个答案:

答案 0 :(得分:1)

上设置一个断点
_watch.Created += this.FileCreated;

不会触发该方法。它指定在调用Created时运行的方法。

你想在

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

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

评论链接:

Raising and Handling Events MSDN

Examples of raising and consuming events