views:

146

answers:

2

In eclipse, F3 or Ctrl+mouseClick in particular on a (function, class, interface, variable) name opens the corresponding (function, class, interface, variable). but in visual studio only a same class method definition opens using F12.

What is the corresponding shortcut to Eclipse's F3 / ctrl+click

+2  A: 

F12 is Go To Definition. It should work regardless of whether the cursor is on a method, type, or field.

HTH, Kent

Kent Boogaart
Also, you can use Shift+F12 to go to the declaration for those cases where the declaration and definition aren't the same thing.
Mike
A: 

Here's a full list.

Ferdeen