Why Won't Visual Studio Step Into This Code?
March 30, 2011
Author: Craig Stuntz
I helped another developer debug an interesting problem this morning. Let’s see if you can spot the problem. The code in question looked something like this simplified version containing only enough code to show the problem:
public void Execute()
{
DoStuff(); // breakpoint 1
}
public IEnumerable<Coordinate> DoStuff()
{
…