문제

In VS2010 and VS2012 I can step into lambda expression when current statement is displayed for the in part of the foreach loop:

StepInto lambda expression

I just had to press f11:

StepInto lambda expression VS2010

In VS2013 this is broken. When I hit f11, current statement goes directly to loop variable:

StepInto lambda expression VS2013

I can still get into lambda expression by putting breakpoint for i % 2 == 0 expression, but simple f11 is so much easier... Is this a bug in VS2013 or do I miss some setting or something?

도움이 되었습니까?

해결책

Make sure you have the "Just My Code" debugging option turned on.

Go to Options -> Debugging -> General and ensure that "Enable just my code" is unselected.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top