BigBoss
BigBoss

Reputation: 63

Visual Studio 2012 - how to step into (F11) source code

I can't step into(F11) the source code. The effect of pressing F11 is same like the effect of pressing F10.Only when I set a break point in the function where I want to step into I can enter the source code of function. The problem starts after I installed the plug-in in Visual Studio 2012. The plug-in is .net reflector visual studio extension. Who can answer my doubts?

Upvotes: 2

Views: 636

Answers (2)

BigBoss
BigBoss

Reputation: 63

I finally found the cause of problem, it is that when you installed .net reflector visual studio extension on Visual Studio, the Plug-in will Turn OFF the "Enable Just My Code" setting on startup. That's the reason why I can't step into(F11) the source code of some Function(such as I use Aop of Spring.Net to log some information). Below is the picture which can make you a glance.enter image description here

enter image description here

Upvotes: 1

Kjartan
Kjartan

Reputation: 19111

You can check and change your keyboard setting and key-bindings under TOOLS -> Options. Search for stepin like this:

enter image description here

Upvotes: 1

Related Questions